Add tracker references.
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index c680d31..ec3c240 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -997,7 +997,7 @@
 string.
 
 To help write such :meth:`__repr__` methods, the :mod:`reprlib` module has a new
-decorator, :func:`reprlib.recursive_repr`, for detecting recursive calls to
+decorator, :func:`~reprlib.recursive_repr`, for detecting recursive calls to
 :meth:`__repr__` and substituting a placeholder string instead:
 
         >>> class MyList(list):
@@ -1011,7 +1011,7 @@
         >>> print(m)
         <'a'|'b'|'c'|...|'x'>
 
-(Contributed by Raymond Hettinger.)
+(Contributed by Raymond Hettinger in :issue:`9826` and :issue:`9840`.)
 
 contextlib
 ----------