Fix 'elseif' doc bug
[bpt/mlt.git] / doc / manual.tex
index 5d5b93e..7bd6bb2 100644 (file)
@@ -151,10 +151,10 @@ If statements are in the usual imperative style, meaning that else clauses are o
 \begin{verbatim}
 if condition1 then
        block1
-else if condition 2 then
-       block 2
+elseif condition 2 then
+       block2
 else
-       block 3
+       block3
 end
 \end{verbatim}