doc/book/en/annexes/rql/language.rst
branchstable
changeset 8017 1df3b5e9d010
parent 7738 e0c86caf5c48
child 8032 bcb87336c7d2
--- a/doc/book/en/annexes/rql/language.rst	Mon Oct 24 13:13:45 2011 +0200
+++ b/doc/book/en/annexes/rql/language.rst	Tue Oct 25 14:03:32 2011 +0200
@@ -111,16 +111,15 @@
 
 Mathematical operators
 ``````````````````````
-::
 
-+==========+=====================+===========+========+
++----------+---------------------+-----------+--------+
 | Operator |    Description      | Example   | Result |
 +==========+=====================+===========+========+
-|  +       | addition            | 2 + 3     | 5      |
+|  `+`     | addition            | 2 + 3     | 5      |
 +----------+---------------------+-----------+--------+
-|  -       | subtraction         | 2 - 3     | -1     |
+|  `-`     | subtraction         | 2 - 3     | -1     |
 +----------+---------------------+-----------+--------+
-|  *       | multiplication      | 2 * 3     | 6      |
+|  `*`     | multiplication      | 2 * 3     | 6      |
 +----------+---------------------+-----------+--------+
 |  /       | division            | 4 / 2     | 2      |
 +----------+---------------------+-----------+--------+
@@ -141,7 +140,6 @@
 |  >>      | bitwise shift right | 8 >> 2    | 2      |
 +----------+---------------------+-----------+--------+
 
-  +, -, *, /
 
 Notice integer division truncates results depending on the backend behaviour. For
 instance, postgresql does.