diff --git a/b_asic/signal_generator.py b/b_asic/signal_generator.py
index fce18c42f592ab7bd9854e5e1a6b2c4668fed888..142ee3eb1111ec9bedb4c3545b9aedc3365e5132 100644
--- a/b_asic/signal_generator.py
+++ b/b_asic/signal_generator.py
@@ -193,15 +193,15 @@ class Gaussian(SignalGenerator):
     """
     Signal generator with Gaussian noise.
 
-    See :class:`numpy.random.Generator.normal` for further details.
+    See :py:meth:`numpy.random.Generator.normal` for further details.
 
     Parameters
     ----------
     seed : int, optional
         The seed of the random number generator.
-    scale : float, default: 1
+    scale : float, default: 1.0
         The standard deviation of the noise.
-    loc : float, default: 0
+    loc : float, default: 0.0
         The average value of the noise.
     """
 
@@ -232,16 +232,16 @@ class Uniform(SignalGenerator):
     """
     Signal generator with uniform noise.
 
-    See :class:`numpy.random.Generator.normal` for further details.
+    See :py:meth:`numpy.random.Generator.normal` for further details.
 
 
     Parameters
     ----------
     seed : int, optional
         The seed of the random number generator.
-    low : float, default: -1
+    low : float, default: -1.0
         The lower value of the uniform range.
-    high : float, default: 1
+    high : float, default: 1.0
         The upper value of the uniform range.
     """
 
diff --git a/docs_sphinx/conf.py b/docs_sphinx/conf.py
index f49a852c87e8ab05eabca5d79c51b08e4e7bbf6e..c0ac067d8f300c8119dcca098e25a124fa8af310 100644
--- a/docs_sphinx/conf.py
+++ b/docs_sphinx/conf.py
@@ -8,7 +8,7 @@
 import shutil
 
 project = 'B-ASIC'
-copyright = '2020-2022, Oscar Gustafsson et al'
+copyright = '2020-2023, Oscar Gustafsson et al'
 author = 'Oscar Gustafsson et al'
 html_logo = "../logo_tiny.png"
 
@@ -37,6 +37,7 @@ intersphinx_mapping = {
     'python': ('https://docs.python.org/3/', None),
     'graphviz': ('https://graphviz.readthedocs.io/en/stable/', None),
     'matplotlib': ('https://matplotlib.org/stable/', None),
+    'numpy': ('https://numpy.org/doc/stable/', None),
     'PyQt5': ("https://www.riverbankcomputing.com/static/Docs/PyQt5", None),
 }