diff options
author | John Högberg <[email protected]> | 2018-03-21 10:09:00 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2018-03-21 10:21:44 +0100 |
commit | 5fcb8fe88e26938537de72462dc77e91a450ee57 (patch) | |
tree | 2f3dc1d2f9590112725b687c56789aff9e834590 /erts/emulator/test/module_info_SUITE.erl | |
parent | d171399bb5a0e9f4c6029564ece4fbf89f3c76f8 (diff) | |
download | otp-5fcb8fe88e26938537de72462dc77e91a450ee57.tar.gz otp-5fcb8fe88e26938537de72462dc77e91a450ee57.tar.bz2 otp-5fcb8fe88e26938537de72462dc77e91a450ee57.zip |
Fix a misleading comment
Diffstat (limited to 'erts/emulator/test/module_info_SUITE.erl')
-rw-r--r-- | erts/emulator/test/module_info_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/test/module_info_SUITE.erl b/erts/emulator/test/module_info_SUITE.erl index ba9b564fdc..0341e63f13 100644 --- a/erts/emulator/test/module_info_SUITE.erl +++ b/erts/emulator/test/module_info_SUITE.erl @@ -62,7 +62,8 @@ exports(Config) when is_list(Config) -> All = lists:sort(?MODULE:module_info(exports)), ok. -%% Test that the list of exported functions from this module is correct. +%% Test that the list of local and exported functions from this module is +%% correct. functions(Config) when is_list(Config) -> All = all_functions(), All = lists:sort(?MODULE:module_info(functions)), |