diff options
author | Loïc Hoguin <[email protected]> | 2022-05-31 09:58:45 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2022-05-31 09:58:45 +0200 |
commit | 3184900799af7ad7c506a1d6744a186edab0bace (patch) | |
tree | b0ba796ebdec00ba90016e0157aa9ad4eb941db0 /doc/src | |
parent | 7937ac32096f872fe8680312402773822cbfbf93 (diff) | |
download | erlang.mk-3184900799af7ad7c506a1d6744a186edab0bace.tar.gz erlang.mk-3184900799af7ad7c506a1d6744a186edab0bace.tar.bz2 erlang.mk-3184900799af7ad7c506a1d6744a186edab0bace.zip |
Tiny docs tweak
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/guide/xref.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/guide/xref.asciidoc b/doc/src/guide/xref.asciidoc index 725f40c..2cfe2e0 100644 --- a/doc/src/guide/xref.asciidoc +++ b/doc/src/guide/xref.asciidoc @@ -164,13 +164,13 @@ functions and modules to ignore project-wide. It accepts either MFAs or modules: [source,make] -XREF_IGNORE={my_mod, log, 1} +XREF_IGNORE = {my_mod, log, 1} Multiple ignores must be provided as an Erlang list: [source,make] -XREF_IGNORE=[{my_mod, log, 1}, other_mod] +XREF_IGNORE = [{my_mod, log, 1}, other_mod] By default Erlang.mk will ignore unused exports for behavior callbacks when the `exports_not_used` |