Skip to content

Commit

Permalink
Fix typo assignation (#1607)
Browse files Browse the repository at this point in the history
The example shows an equal sign but it should be an assignment.
  • Loading branch information
fraya authored May 26, 2024
2 parents 7d24b02 + a34bb79 commit f546cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/source/about/examples/limited_types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ vectors of floating point numbers for this code:
output :: <audio-buffer>)
=> ()
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;

0 comments on commit f546cf1

Please sign in to comment.