diff options
author | Bruce Wells <brucekwells@gmail.com> | 2019-01-10 21:53:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 21:53:34 +0300 |
commit | 790827ff45639b8a18485186ab0a31eb4263f119 (patch) | |
tree | d8ecd28b30118cb9d6e075dfe72a12c095227ded | |
parent | 13230631322675a6e07c4fde0f9c78626b336469 (diff) |
Fix md typo (#39)
* Updated from NeonXP/MathExecutor
* Fixed function in () block issue
* Fixing typos in and clarifying documentation.
* Syncing from origin (#3)
* Documentation fixes (#34)
Fixing typos in and clarifying documentation.
* MathExecutor allow override default operators, functions and vars (#36)
* Syncing to origin (#4)
* Documentation fixes (#34)
Fixing typos in and clarifying documentation.
* MathExecutor allow override default operators, functions and vars (#36)
* Added simple coc (#37)
* Added simple coc
* Fix
* Replaceable operators (#38)
* Updated from NeonXP/MathExecutor
* Fixed function in () block issue
* Fixing typos in and clarifying documentation.
* Syncing from origin (#3)
* Documentation fixes (#34)
Fixing typos in and clarifying documentation.
* MathExecutor allow override default operators, functions and vars (#36)
* Allow for operators to be replaced based on regex expression
* \\ instead of \
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -162,5 +162,4 @@ You can add operators, functions and variables with the public methods in MathEx This will allow you to remove functions and operators if needed, or implement different types more simply. -Also note that you can replace an existing default operator by adding a new operator with the same regular expression string. For example if you just need to redefine TokenPlus, you can just add a new operator with the same regex string, in this case '\+'. - +Also note that you can replace an existing default operator by adding a new operator with the same regular expression string. For example if you just need to redefine TokenPlus, you can just add a new operator with the same regex string, in this case '\\+'. |