summaryrefslogtreecommitdiffstats
path: root/doc/rofi-theme.5.markdown
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2023-02-11 01:01:19 +0100
committerDave Davenport <qball@gmpclient.org>2023-02-11 01:01:19 +0100
commit3c8a0249c7b6ad8f8a9fe36bba6edc44ca16b6e8 (patch)
treeeb7b2c405117a190025ad014269cbcc40427bdfd /doc/rofi-theme.5.markdown
parent9080ec820e692c718824464e206e1f8ec2752a51 (diff)
[Theme] Rename % to modulo to fix compiler.
Diffstat (limited to 'doc/rofi-theme.5.markdown')
-rw-r--r--doc/rofi-theme.5.markdown20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/rofi-theme.5.markdown b/doc/rofi-theme.5.markdown
index e65c7114..de288738 100644
--- a/doc/rofi-theme.5.markdown
+++ b/doc/rofi-theme.5.markdown
@@ -573,16 +573,16 @@ width: calc( 20% min 512 );
It supports the following operations:
-* `+` : Add
-* `-` : Subtract
-* `/` : Divide
-* `*` : Multiply
-* `%` : Modulo
-* `min` : Minimum of lvalue or rvalue;
-* `max` : Maximum of lvalue or rvalue;
-* `floor` : Round down lvalue to the next multiple of rvalue
-* `ceil` : Round up lvalue to the next multiple of rvalue
-* `round` : Round lvalue to the next multiple of rvalue
+* `+` : Add
+* `-` : Subtract
+* `/` : Divide
+* `*` : Multiply
+* `modulo` : Modulo
+* `min` : Minimum of lvalue or rvalue;
+* `max` : Maximum of lvalue or rvalue;
+* `floor` : Round down lvalue to the next multiple of rvalue
+* `ceil` : Round up lvalue to the next multiple of rvalue
+* `round` : Round lvalue to the next multiple of rvalue
It uses the C precedence ordering.