diff --git a/doc/manual/expressions/builtins.xml b/doc/manual/expressions/builtins.xml index 6c38941c0..e9baff659 100644 --- a/doc/manual/expressions/builtins.xml +++ b/doc/manual/expressions/builtins.xml @@ -1023,17 +1023,16 @@ in foo Convert the expression e to a string. - e can be: + e can be: - a string (in which case the string is returned unmodified) - a path (e.g., toString /foo/bar yields "/foo/bar" - a set containing { __toString = self: ...; } - an integer - a list, in which case the string representations of its elements are joined with spaces - a boolean (false yields "", true yields "1" - null, which yields the empty string. + A string (in which case the string is returned unmodified). + A path (e.g., toString /foo/bar yields "/foo/bar". + A set containing { __toString = self: ...; }. + An integer. + A list, in which case the string representations of its elements are joined with spaces. + A Boolean (false yields "", true yields "1". + null, which yields the empty string. -