From 246f09871bbfd87d0d9dee5e5c20694dee6cf2d3 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Fri, 1 May 2015 16:59:15 +0200 Subject: [PATCH] Fix spelling --- VL2/content/VL2_more_ways_to_define_functions.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VL2/content/VL2_more_ways_to_define_functions.tex b/VL2/content/VL2_more_ways_to_define_functions.tex index 0cdc726..56a8953 100644 --- a/VL2/content/VL2_more_ways_to_define_functions.tex +++ b/VL2/content/VL2_more_ways_to_define_functions.tex @@ -3,7 +3,7 @@ f :: Int -> Int f x = x + 1 \end{haskellcode} -\ifger{Aber stellen wir uns vor, dass wir einige Hilfsfunktionen benötigen, die sehr spezifisch ist und eigentlich zur aktuellen Funktion gehört. In C würden wir diese vermutlich top-level deklarieren und \cinline{static} machen.}{But now imagine we need a helper function which is very specific to the current function. In C we would have to define this new helper function at top-level and would probably make it \cinline{static}.} +\ifger{Aber stellen wir uns vor, dass wir eine Hilfsfunktion benötigen, die sehr spezifisch ist und eigentlich zur aktuellen Funktion gehört. In C würden wir diese vermutlich top-level deklarieren und \cinline{static} machen.}{But now imagine we need a helper function which is very specific to the current function. In C we would have to define this new helper function at top-level and would probably make it \cinline{static}.} \pause \vspace{\baselineskip} \\