Skip to content

Commit

Permalink
Fix typo assignation
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 25, 2024
1 parent 7d24b02 commit a34bb79
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 a34bb79

Please sign in to comment.