diff options
author | Hans Bolinder <[email protected]> | 2015-03-10 09:54:02 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-03-12 15:16:19 +0100 |
commit | 49b2127e3ea68464f7c02ad7f7875e304ded123e (patch) | |
tree | 5351656399120f12088bc6ce2ef468b6b561db67 /lib/edoc/src/edoc_extract.erl | |
parent | 3ee0b4af0ea4cc1a9dd0b4f732f8f4028025d32e (diff) | |
download | otp-49b2127e3ea68464f7c02ad7f7875e304ded123e.tar.gz otp-49b2127e3ea68464f7c02ad7f7875e304ded123e.tar.bz2 otp-49b2127e3ea68464f7c02ad7f7875e304ded123e.zip |
edoc: Correct documentation
Substitute references to edoc_lib:get_doc_env/3 for references to
edoc_lib:get_doc_env/4.
Diffstat (limited to 'lib/edoc/src/edoc_extract.erl')
-rw-r--r-- | lib/edoc/src/edoc_extract.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/edoc/src/edoc_extract.erl b/lib/edoc/src/edoc_extract.erl index 6d34de3a85..758750083d 100644 --- a/lib/edoc/src/edoc_extract.erl +++ b/lib/edoc/src/edoc_extract.erl @@ -91,7 +91,7 @@ source(Forms, Comments, File, Env, Opts) -> %% type `form_list', or a list of syntax trees representing %% "program forms" (cf. {@link edoc:read_source/2}. %% `Env' is an environment created by {@link -%% edoc_lib:get_doc_env/4}. The `File' argument is used for +%% edoc_lib:get_doc_env/3}. The `File' argument is used for %% error reporting and output file name generation only. %% %% See {@link edoc:get_doc/2} for descriptions of the `def', @@ -222,7 +222,7 @@ add_macro_defs(Defs0, Opts, Env) -> %% %% @doc Reads a text file and returns the list of tags in the file. Any %% lines of text before the first tag are ignored. `Env' is an -%% environment created by {@link edoc_lib:get_doc_env/4}. Upon error, +%% environment created by {@link edoc_lib:get_doc_env/3}. Upon error, %% `Reason' is an atom returned from the call to {@link %% //kernel/file:read_file/1} or the atom 'invalid_unicode'. %% @@ -252,7 +252,7 @@ file(File, Context, Env, Opts) -> %% %% @doc Returns the list of tags in the text. Any lines of text before %% the first tag are ignored. `Env' is an environment created by {@link -%% edoc_lib:get_doc_env/4}. +%% edoc_lib:get_doc_env/3}. %% %% See {@link source/4} for a description of the `def' option. |