From a34bb794e527a2476b1db994bb11c9c2eeb7f50d Mon Sep 17 00:00:00 2001 From: Fernando Raya Date: Sat, 25 May 2024 16:52:09 +0200 Subject: [PATCH] Fix typo assignation The example shows an equal sign but it should be an assignment. --- documentation/source/about/examples/limited_types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/source/about/examples/limited_types.rst b/documentation/source/about/examples/limited_types.rst index 7fdb828d1..f92e63cbb 100644 --- a/documentation/source/about/examples/limited_types.rst +++ b/documentation/source/about/examples/limited_types.rst @@ -48,7 +48,7 @@ vectors of floating point numbers for this code: output :: ) => () for (i from 0 below $audio-buffer-size) - output[i] = 0.5 * input1[i] + 0.5 * input2[i]; + output[i] := 0.5 * input1[i] + 0.5 * input2[i]; end; end;