summaryrefslogtreecommitdiff
path: root/book/module1/functions.tex
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-04-24 17:37:21 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-04-24 17:37:21 -0600
commite53c35223bed9a32f1e9cd3fe75caf344d4b5c7e (patch)
tree3a749e57d1ac92f9fdda3f4bb50a3535e6fc72fa /book/module1/functions.tex
parent665eaed5e9a677c4d51d066d21aa8ddb612ff565 (diff)
Updated tex files
Diffstat (limited to 'book/module1/functions.tex')
-rw-r--r--book/module1/functions.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/module1/functions.tex b/book/module1/functions.tex
index 07da182..19a8a85 100644
--- a/book/module1/functions.tex
+++ b/book/module1/functions.tex
@@ -81,7 +81,7 @@ function we will have\ldots{}
\begin{Shaded}
\begin{Highlighting}[]
-\KeywordTok{def}\NormalTok{ function\_name(argument1, argument2, argument3)}
+\KeywordTok{def}\NormalTok{ function\_name(argument1, argument2, argument3):}
\NormalTok{ output1 }\OperatorTok{=}\NormalTok{ argument1 }\OperatorTok{*}\NormalTok{ argument2 }\OperatorTok{{-}}\NormalTok{ argument3}
\NormalTok{ output2 }\OperatorTok{=}\NormalTok{ argument2 }\OperatorTok{+}\NormalTok{ argument3}
\ControlFlowTok{return}\NormalTok{ output1, output2}