diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml index c50aa1e5ec7728e649092a7cf4963a612fc9e08f..74548b6230edd920c5aa76091be7a8e371f3469e 100644 --- a/tutorial/tutorial.wmml +++ b/tutorial/tutorial.wmml @@ -1271,7 +1271,7 @@ that is still missing is the ability to exit a loop in the middle of it. There are three ways to do this: <section title="break"> -<tt>Break</tt><!-- FIXME: liten bokstav? --> exits a loop or switch statement immediately and continues +<tt>break</tt><!-- FIXME: liten bokstav? JA! /Hedda--> exits a loop or switch statement immediately and continues executing after the loop. <tt>Break</tt> can not be used outside of a loop or switch. It is quite useful in conjunction with <tt>while(1)</tt> to construct command parsing loops for instance: