diff options
| author | hhc0null <[email protected]> | 2017-01-12 00:02:17 +0900 |
|---|---|---|
| committer | hhc0null <[email protected]> | 2017-01-12 00:02:17 +0900 |
| commit | af4f6e8dc6734a40133090df16c10e6099b67abc (patch) | |
| tree | 472aaa1353c80e05d1153a19cb4f2057b3d309f1 /include | |
| parent | db1bd078bedcc33bfd3ca4c45f46bc553786bfd8 (diff) | |
| download | mruby-af4f6e8dc6734a40133090df16c10e6099b67abc.tar.gz mruby-af4f6e8dc6734a40133090df16c10e6099b67abc.zip | |
Fix a typo.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/string.h b/include/mruby/string.h index 9ccf8f187..5a5a6ffd2 100644 --- a/include/mruby/string.h +++ b/include/mruby/string.h @@ -68,7 +68,7 @@ struct RString { #define mrb_str_ptr(s) ((struct RString*)(mrb_ptr(s))) #define RSTRING(s) mrb_str_ptr(s) #define RSTRING_PTR(s) RSTR_PTR(RSTRING(s)) -#define RSTRING_EMBED_LEN(s) RSTR_ENBED_LEN(RSTRING(s)) +#define RSTRING_EMBED_LEN(s) RSTR_EMBED_LEN(RSTRING(s)) #define RSTRING_LEN(s) RSTR_LEN(RSTRING(s)) #define RSTRING_CAPA(s) RSTR_CAPA(RSTRING(s)) #define RSTRING_END(s) (RSTRING_PTR(s) + RSTRING_LEN(s)) |
