Various docs typo fixed.

This commit is contained in:
Revar Desmera
2023-03-08 21:54:27 -08:00
parent af72ef3bd5
commit 1da91c6fcf
4 changed files with 10 additions and 10 deletions

View File

@@ -548,7 +548,7 @@ function f_3arg(target_func) =
// a = The argument that will be passed through.
// b = The argumen that will be discarded.
// Example:
// x = while(0, ival(f_lt(5)), xval(fngen_add(1)));
// x = while(0, ival(f_lt(5)), xval(f_add(1)));
function ival(target_func) = function(a,b) target_func(a);
@@ -564,7 +564,7 @@ function ival(target_func) = function(a,b) target_func(a);
// a = The argument that will be passed through.
// b = The argumen that will be discarded.
// Example:
// x = while(0, ival(f_lt(5)), xval(fngen_add(1)));
// x = while(0, ival(f_lt(5)), xval(f_add(1)));
function xval(target_func) = function(a,b) target_func(b);