aboutsummaryrefslogtreecommitdiff
path: root/pages/hints/pure-functions.md
diff options
context:
space:
mode:
authorGiacomo Cavalieri <giacomo.cavalieri@icloud.com>2024-04-02 10:09:15 +0200
committerGitHub <noreply@github.com>2024-04-02 09:09:15 +0100
commite2b57b8e6150f824edbf044fd6222f0c81d6f1b3 (patch)
tree931e5661180000395554492dee5c2cbe70e48fb7 /pages/hints/pure-functions.md
parentbbefb97ba3d8f117b8cbef769180a4d8425cf145 (diff)
downloadlustre-e2b57b8e6150f824edbf044fd6222f0c81d6f1b3.tar.gz
lustre-e2b57b8e6150f824edbf044fd6222f0c81d6f1b3.zip
:memo: Fix some typos. (#97)
Diffstat (limited to 'pages/hints/pure-functions.md')
-rw-r--r--pages/hints/pure-functions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/hints/pure-functions.md b/pages/hints/pure-functions.md
index 4e8ae4a..bd384c1 100644
--- a/pages/hints/pure-functions.md
+++ b/pages/hints/pure-functions.md
@@ -26,7 +26,7 @@ fn f(x) {
Functions like this are _pure_. They take an input, perform some computation, and
return an output. The output is _only_ determined by the input, and the function
doesn't change anything about the outside world like writing to a file or making
-a HTTP request.
+an HTTP request.
**Lustre assumes your `init`, `update`, and `view` functions are pure** and breaking
this assumption can lead to unexpected behaviour. It is _really_ important to