Clarify that the function *definition* creates the function and the binding in the module globals.
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst
index d1a72c0..f5d285e 100644
--- a/Doc/tutorial/modules.rst
+++ b/Doc/tutorial/modules.rst
@@ -550,6 +550,6 @@
 .. rubric:: Footnotes
 
 .. [#] In fact function definitions are also 'statements' that are 'executed'; the
-   execution of a module-level function enters the function name in the module's
-   global symbol table.
+   execution of a module-level function definition enters the function name in
+   the module's global symbol table.