reload() takes the module itself.
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst
index 975e13e..7a5af4f 100644
--- a/Doc/tutorial/modules.rst
+++ b/Doc/tutorial/modules.rst
@@ -108,7 +108,7 @@
For efficiency reasons, each module is only imported once per interpreter
session. Therefore, if you change your modules, you must restart the
interpreter -- or, if it's just one module you want to test interactively,
- use :func:`reload`, e.g. ``reload('modulename')``.
+ use :func:`reload`, e.g. ``reload(modulename)``.
.. _tut-modulesasscripts: