summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hennig <sh2d@arcor.de>2012-11-06 20:00:02 +0100
committerStephan Hennig <sh2d@arcor.de>2012-11-06 20:00:02 +0100
commit522ac06e50f8155af51423a13cb6d06020b02443 (patch)
treebe3ef0c35208437a0b98f7fcc49318916ec681dc
parent0e5d89e6d41c9fd2de8576ca0c98b9e295ab023a (diff)
downloadluatexbase-522ac06e50f8155af51423a13cb6d06020b02443.tar.gz
Fix typos in luatexbase-mcb documentation.
-rw-r--r--luatexbase-mcb.dtx8
1 files changed, 4 insertions, 4 deletions
diff --git a/luatexbase-mcb.dtx b/luatexbase-mcb.dtx
index b26f56f..6f1b1a6 100644
--- a/luatexbase-mcb.dtx
+++ b/luatexbase-mcb.dtx
@@ -141,7 +141,7 @@ See the aforementioned source file(s) for copyright and licensing information.
%
% \luatex provides an extremely interesting feature, named callbacks. It
% allows to call some Lua functions at some points of the \TeX\ algorithm (a
-% \emph{callback}), like when \TeX\ breaks likes, puts vertical spaces, etc.
+% \emph{callback}), like when \TeX\ breaks lines, puts vertical spaces, etc.
% The \luatex core offers a function called \texttt{callback.register} that
% enables to register a function in a callback.
%
@@ -156,7 +156,7 @@ See the aforementioned source file(s) for copyright and licensing information.
% \begin{description}
% \item[simple] is for functions that don't return anything: they are called
% in order, all with the same argument;
-% \item[data] is for functions receiving a piece of data of nay type
+% \item[data] is for functions receiving a piece of data of any type
% except node list head (and possibly other arguments) and returning it
% (possibly modified): the functions are called in order, and each is
% passed the return value of the previous (and the other arguments
@@ -166,8 +166,8 @@ See the aforementioned source file(s) for copyright and licensing information.
% modified node list, or the boolean values |true| or |false|. The
% functions are chained the same way as for \emph{data} except that for
% the following. If
-% one function returns |false|, then |false| is immediately return and the
-% following functions are \emph{not} called. If one function returns
+% one function returns |false|, then |false| is immediately returned and
+% the following functions are \emph{not} called. If one function returns
% |true|, then the same head is passed to the next function. If all
% functions return |true|, then |true| is returned, otherwise the return
% value of the last function not returning |true| is used.