diff --git a/doc/content-for-reference.html b/doc/content-for-reference.html
index 8e94ef8ca..d0c2c5b52 100644
--- a/doc/content-for-reference.html
+++ b/doc/content-for-reference.html
@@ -1279,7 +1279,7 @@ Rather, records lacking one or more sort keys are simply output contiguously by
- Void: a field name is present in a record (or in an out-of-stream
+ Empty: a field name is present in a record (or in an out-of-stream
variable) with empty value: e.g. x=,y=2 in the data input stream, or
assignment $x="" or @x="" in mlr put.
@@ -1297,13 +1297,13 @@ Rules for null-handling:
-- Records with one or more null (void or absent) sort-field values sort
+
- Records with one or more null (empty or absent) sort-field values sort
after records with all sort-field values present:
POKI_RUN_COMMAND{{mlr cat data/sort-null.dat}}HERE
POKI_RUN_COMMAND{{mlr sort -n a data/sort-null.dat}}HERE
POKI_RUN_COMMAND{{mlr sort -nr a data/sort-null.dat}}HERE
-
- Functions/operators which have one or more void arguments produce void output: e.g.
+
- Functions/operators which have one or more empty arguments produce empty output: e.g.
POKI_RUN_COMMAND{{echo 'x=2,y=3' | mlr put '$a=$x+$y'}}HERE
POKI_RUN_COMMAND{{echo 'x=,y=3' | mlr put '$a=$x+$y'}}HERE
POKI_RUN_COMMAND{{echo 'x=,y=3' | mlr put '$a=log($x);$b=log($y)'}}HERE
@@ -1324,7 +1324,7 @@ The reasoning is as follows:
- Void values are explicit in the data so they should explicitly affect accumulations:
+ Empty values are explicit in the data so they should explicitly affect accumulations:
mlr put '@sum += $x'
should accumulate numeric x values into the sum but an empty
x, when encountered in the input data stream, should make the sum
diff --git a/doc/reference.html b/doc/reference.html
index 2bb30a069..c92fd98e6 100644
--- a/doc/reference.html
+++ b/doc/reference.html
@@ -4769,7 +4769,7 @@ Rather, records lacking one or more sort keys are simply output contiguously by
- Void: a field name is present in a record (or in an out-of-stream
+ Empty: a field name is present in a record (or in an out-of-stream
variable) with empty value: e.g. x=,y=2 in the data input stream, or
assignment $x="" or @x="" in mlr put.
@@ -4787,7 +4787,7 @@ Rules for null-handling: