diff --git a/doc/src/devdocs/functions.md b/doc/src/devdocs/functions.md index 70893a809b54f..fb1123f9b19ae 100644 --- a/doc/src/devdocs/functions.md +++ b/doc/src/devdocs/functions.md @@ -7,7 +7,7 @@ This document will explain how functions, method definitions, and method tables Every function in Julia is a generic function. A generic function is conceptually a single function, but consists of many definitions, or methods. The methods of a generic function are stored in a -method table. There is one global method table (type `MethodTable`) named `Core.GlobalMethods`. Any +method table. There is one global method table (type `MethodTable`) named `Core.methodtable`. Any default operation on methods (such as calls) uses that table. ## [Function calls](@id Function-calls)