diff options
author | Giacomo Cavalieri <giacomo.cavalieri@icloud.com> | 2024-04-02 10:09:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 09:09:15 +0100 |
commit | e2b57b8e6150f824edbf044fd6222f0c81d6f1b3 (patch) | |
tree | 931e5661180000395554492dee5c2cbe70e48fb7 /pages/hints/pure-functions.md | |
parent | bbefb97ba3d8f117b8cbef769180a4d8425cf145 (diff) | |
download | lustre-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.md | 2 |
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 |