summaryrefslogtreecommitdiffhomepage
path: root/doc/guides/symbol.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/guides/symbol.md')
-rw-r--r--doc/guides/symbol.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guides/symbol.md b/doc/guides/symbol.md
index e9e72a6d3..5ce8cdd4d 100644
--- a/doc/guides/symbol.md
+++ b/doc/guides/symbol.md
@@ -4,7 +4,7 @@ Symbols in `mruby` C source code is represented by `mrb_sym` which is alias of
`uint32_t`. Lower 30 bits are used for symbols so that higher 2 bits can be
used as flags, e.g. `struct mt_elem` in `class.c`.
-```C
+```c
struct mt_elem {
union mt_ptr ptr;
size_t func_p:1;