Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/src/devdocs/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down