summaryrefslogtreecommitdiffhomepage
path: root/doc/guides/symbol.md
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-06-22 06:56:46 +1000
committerJohn Bampton <[email protected]>2021-06-22 06:57:03 +1000
commit188e9b6fb01a8b228f4e4d7cce1d509e103f2610 (patch)
treebe30e63729f3ec039505b4b87a0ecded7e0bb9ed /doc/guides/symbol.md
parent8416e706ba1758e6d0f85adf0f2b3510ce711862 (diff)
downloadmruby-188e9b6fb01a8b228f4e4d7cce1d509e103f2610.tar.gz
mruby-188e9b6fb01a8b228f4e4d7cce1d509e103f2610.zip
Enable markdownlint rules MD003,MD005,MD007
Lint Markdown https://github.com/DavidAnson/markdownlint#rules--aliases
Diffstat (limited to 'doc/guides/symbol.md')
-rw-r--r--doc/guides/symbol.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/guides/symbol.md b/doc/guides/symbol.md
index 5ce8cdd4d..8f90ce59f 100644
--- a/doc/guides/symbol.md
+++ b/doc/guides/symbol.md
@@ -57,13 +57,13 @@ To save RAM, `mruby` can use compile-time allocation of some symbols. You can
use following macros to get preallocated symbols by including `mruby/presym.h`
header.
- * `MRB_SYM(xor)` //=> xor (Word characters)
- * `MRB_SYM_B(xor)` //=> xor! (Method with Bang)
- * `MRB_SYM_Q(xor)` //=> xor? (Method with Question mark)
- * `MRB_SYM_E(xor)` //=> xor= (Method with Equal)
- * `MRB_CVSYM(xor)` //=> @@xor (Class Variable)
- * `MRB_IVSYM(xor)` //=> @xor (Instance Variable)
- * `MRB_OPSYM(xor)` //=> ^ (Operator)
+* `MRB_SYM(xor)` //=> xor (Word characters)
+* `MRB_SYM_B(xor)` //=> xor! (Method with Bang)
+* `MRB_SYM_Q(xor)` //=> xor? (Method with Question mark)
+* `MRB_SYM_E(xor)` //=> xor= (Method with Equal)
+* `MRB_CVSYM(xor)` //=> @@xor (Class Variable)
+* `MRB_IVSYM(xor)` //=> @xor (Instance Variable)
+* `MRB_OPSYM(xor)` //=> ^ (Operator)
For `MRB_OPSYM()`, specify the names corresponding to operators (see
`MRuby::Presym::OPERATORS` in `lib/mruby/presym.rb` for the names that