diff options
author | Jon Parise <[email protected]> | 2017-02-26 15:31:24 -0800 |
---|---|---|
committer | Jon Parise <[email protected]> | 2017-02-26 15:31:24 -0800 |
commit | e352df61fb15aac399dfe661193cf79190291ca5 (patch) | |
tree | 46299cf121fde8e5bd7b0b56449b9cf85cd9a316 | |
parent | 133645d9a24e6a6d7123370ef332ca478598040e (diff) | |
download | otp-e352df61fb15aac399dfe661193cf79190291ca5.tar.gz otp-e352df61fb15aac399dfe661193cf79190291ca5.tar.bz2 otp-e352df61fb15aac399dfe661193cf79190291ca5.zip |
Include ending dot in yecc's Header code example
All yecc declarations must end in a dot (.). The code example for the
Header declaration doesn't include a trailing dot while all other code
examples do. This change adds that dot for consistency and to avoid any
potential confusion on the part of the reader.
-rw-r--r-- | lib/parsetools/doc/src/yecc.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parsetools/doc/src/yecc.xml b/lib/parsetools/doc/src/yecc.xml index 9188bd2a22..004fc1668d 100644 --- a/lib/parsetools/doc/src/yecc.xml +++ b/lib/parsetools/doc/src/yecc.xml @@ -207,7 +207,7 @@ <code> Header "%% Copyright (C)" "%% @private" -"%% @Author John"</code> +"%% @Author John".</code> <p>Next comes a declaration of the <c>nonterminal categories</c> to be used in the rules. For example:</p> <code type="none"> |