From c05d9b0569a2a2c43db6f09a53fed7b54ae97d32 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 14 Oct 2016 15:41:03 -0400 Subject: [PATCH] Help: Fix math(EXPR) documentation formatting --- Help/command/math.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Help/command/math.rst b/Help/command/math.rst index d4deb16e4..f99dc3db3 100644 --- a/Help/command/math.rst +++ b/Help/command/math.rst @@ -5,9 +5,10 @@ Mathematical expressions. :: - math(EXPR ) + math(EXPR ) ``EXPR`` evaluates mathematical expression and returns result in the -output variable. Example mathematical expression is '5 * ( 10 + 13 -)'. Supported operators are + - * / % | & ^ ~ << >> * / %. They have -the same meaning as they do in C code. +output variable. Example mathematical expression is ``5 * (10 + 13)``. +Supported operators are ``+``, ``-``, ``*``, ``/``, ``%``, ``|``, ``&``, +``^``, ``~``, ``<<``, ``>>``, and ``(...)``. They have the same meaning +as they do in C code.