diff --git a/reference/var/functions/empty.xml b/reference/var/functions/empty.xml
index 13d4c46d53..abaaab4ed9 100644
--- a/reference/var/functions/empty.xml
+++ b/reference/var/functions/empty.xml
@@ -46,21 +46,10 @@
&reftitle.returnvalues;
- Returns &false; if var exists and has a non-empty, non-zero value.
+ Returns &false; if var exists and has a non-empty, non-zero value,
+ aka falsey, see conversion to boolean.
Otherwise returns &true;.
-
- The following values are considered to be empty:
-
- "" (an empty string)
- 0 (0 as an integer)
- 0.0 (0 as a float)
- "0" (0 as a string)
- &null;
- &false;
- array() (an empty array)
-
-
&reftitle.examples;