From e2b57b8e6150f824edbf044fd6222f0c81d6f1b3 Mon Sep 17 00:00:00 2001 From: Giacomo Cavalieri Date: Tue, 2 Apr 2024 10:09:15 +0200 Subject: :memo: Fix some typos. (#97) --- pages/hints/pure-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pages/hints/pure-functions.md') 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 -- cgit v1.2.3