Fix typo in docs

This commit is contained in:
Max Bruckner 2015-05-14 10:13:04 +02:00
parent b762d16dd8
commit 0f71bc262a

View File

@ -10,7 +10,7 @@ return value by writing a *transform* for the function. A transform is a
function wrapping around a function to be transformed or completely replaces
a function.
For example, the functions or math.js use zero-based matrix indices (as is
For example, the functions for math.js use zero-based matrix indices (as is
common in programing languages), but the expression parser uses one-based
indices. To enable this, all functions dealing with indices have a transform,
which changes input from one-based to zero-based, and transforms output (and