diff --git a/Frontend/tools/xpath.html b/Frontend/tools/xpath.html
index 08d65f6..36f0558 100644
--- a/Frontend/tools/xpath.html
+++ b/Frontend/tools/xpath.html
@@ -879,198 +879,6 @@
- fn:round()
-
- The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is closest to positive infinity is returned. If the argument is NaN, then NaN is returned. If the argument is positive infinity, then positive infinity is returned. If the argument is negative infinity, then negative infinity is returned. If the argument is positive zero, then positive zero is returned. If the argument is negative zero, then negative zero is returned. If the argument is less than zero, but greater than or equal to -0.5, then negative zero is returned.
-
-
NOTE
- For these last two cases, the result of calling the round function is not the same as the result of adding 0.5 and then calling the floor function.
-
-
Arguments:
-
-
- | Type |
- Description |
-
-
- | node-set |
- Node set to sum |
-
-
Examples:
-
-
- | Expression |
- Result |
-
-
- | floor(3.1) |
- 3 |
-
-
- | floor(3.9) |
- 4 |
-
-
- | floor(3.5) |
- 3 |
-
-
-
W3C Documentation reference
-
-
-
-
-