From b9ccc8f2c37a921e24ecee5e77c85e5fbc0fc02e Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Wed, 3 Sep 1997 20:47:43 +0200 Subject: [PATCH] Some spelling corrections. Rev: tutorial/tutorial.wmml:1.20 --- tutorial/tutorial.wmml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml index 471104474a..36986c63fc 100644 --- a/tutorial/tutorial.wmml +++ b/tutorial/tutorial.wmml @@ -1934,7 +1934,7 @@ syntax is the same as for a normal function, except you write <pre> lambda ( <i>types</i> ) { <i>statements</i> } </pre> -The major differeance is that this is an expression that can be used inside +The major difference is that this is an expression that can be used inside other function. Example: <example language=pike> function bar() { return lambda() { return 1; }; ) @@ -2924,7 +2924,7 @@ These modifiers are available: Note that inheriting program can still re-define the identifier. Also note that <tt>private</tt> does not imply <tt>static</tt>. <dt><tt>public</tt> -<dd>This is the oppsite of <tt>private</tt>. This is the default for +<dd>This is the opposite of <tt>private</tt>. This is the default for all identifiers. <tt>public</tt> can be used to override the effects of a private inherit. <dt><tt>protected</tt> @@ -5734,7 +5734,7 @@ return res;<br> <dt><encaps>DESCRIPTION</encaps><dd> This function sorts an array after a compare-function 'fun' which takes two arguments and should return 1 if the first argument -is larger then the second. The rest of the arguments 'args' will be +is larger than the second. The rest of the arguments 'args' will be sent as 3rd, 4th etc. argument to fun. If fun is omitted, `< is used instead. <p> -- GitLab