diff options
Diffstat (limited to 'system/doc')
-rw-r--r-- | system/doc/programming_examples/funs.xmlsrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/programming_examples/funs.xmlsrc b/system/doc/programming_examples/funs.xmlsrc index e4f5c9c9c9..7bcf2e6171 100644 --- a/system/doc/programming_examples/funs.xmlsrc +++ b/system/doc/programming_examples/funs.xmlsrc @@ -127,7 +127,7 @@ F = fun FunctionName/Arity</code> <p>It is also possible to refer to a function defined in a different module, with the following syntax:</p> <code type="none"> -F = {Module, FunctionName}</code> +F = fun Module:FunctionName/Arity</code> <p>In this case, the function must be exported from the module in question.</p> <p>The following program illustrates the different ways of creating |