diff options
| author | Franck Verrot <[email protected]> | 2015-06-24 13:07:07 +0200 |
|---|---|---|
| committer | Franck Verrot <[email protected]> | 2015-06-24 13:07:07 +0200 |
| commit | 25885072858582d3d2f985b405a8e84d58f716e8 (patch) | |
| tree | 7cd94d959d042a2ae227c99545513aa66fba8027 /src/object.c | |
| parent | 5161909cd7efe783d63270914c0f4b6463c272b5 (diff) | |
| download | mruby-25885072858582d3d2f985b405a8e84d58f716e8.tar.gz mruby-25885072858582d3d2f985b405a8e84d58f716e8.zip | |
Remove unnecessary backticks.
Dr Markus Kuhn published in 1999 an article [1] explaining in details
why we shouldn't use the ASCII grave accent (0x60) as a left quotation.
Backticks have been used most notably to produce nice-looking LaTeX
documents but it doesn't seem to be an issue on modern platforms and
for the oldest ones, there are workarounds as mentioned by Dr Kuhn.
[1]: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
Diffstat (limited to 'src/object.c')
| -rw-r--r-- | src/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object.c b/src/object.c index c5fb74575..f8f41bfe8 100644 --- a/src/object.c +++ b/src/object.c @@ -428,7 +428,7 @@ mrb_check_type(mrb_state *mrb, mrb_value x, enum mrb_vtype t) * Returns a string representing <i>obj</i>. The default * <code>to_s</code> prints the object's class and an encoding of the * object id. As a special case, the top-level object that is the - * initial execution context of Ruby programs returns ``main.'' + * initial execution context of Ruby programs returns "main." */ MRB_API mrb_value |
