diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex b/Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex index 4f63ed8fc70..a1ef1a42851 100644 --- a/Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex +++ b/Master/texmf-dist/doc/latex/l3kernel/l3styleguide.tex @@ -1,6 +1,6 @@ \iffalse meta-comment -File l3styleguide.tex Copyright (C) 2011,202 The LaTeX3 Project +File l3styleguide.tex Copyright (C) 2011,2012 The LaTeX3 Project It may be distributed and/or modified under the conditions of the LaTeX Project Public License (LPPL), either version 1.3c of this @@ -156,7 +156,7 @@ look like the example: \section{Code conventions} All code-level functions should be \enquote{long} if they accept any -arguments, even if it seems \enquote{very unlikely} that a \cs{par} token. +arguments, even if it seems \enquote{very unlikely} that a \cs{par} token will be passed. Thus \cs{cs_new_nopar:Npn} and so forth should only be used to create functions which accept no arguments at all. @@ -172,7 +172,7 @@ which has an \texttt{N}-type first argument: \begin{verbatim} \cs_generate_variant:Nn \foo:Nn { NV , No } \cs_generate_variant:Nn \foo:Nn { c , cV , co } -\end{verbatim*} +\end{verbatim} There are cases where omitting braces from \texttt{o}-type arguments is desirable for performance reasons. This should only be done if the |