summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-14 00:30:08 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-14 00:30:08 +0900
commitd2003a6d392b3b0054d7528e2e731584196aefad (patch)
treefcbf01901b33caeeb63dffa60e62c5968f7b1745 /string.c
parent3b3b4a44e57dfe03ce3913009d69a33d6f6100be (diff)
Symbol just represents a name
Diffstat (limited to 'string.c')
-rw-r--r--string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/string.c b/string.c
index 1dafb2cdd8..b37b8542c7 100644
--- a/string.c
+++ b/string.c
@@ -10592,8 +10592,8 @@ rb_str_unicode_normalized_p(int argc, VALUE *argv, VALUE str)
/**********************************************************************
* Document-class: Symbol
*
- * Symbol objects represent names and some strings inside the Ruby
- * interpreter. They are generated using the <code>:name</code> and
+ * Symbol objects represent names inside the Ruby interpreter. They
+ * are generated using the <code>:name</code> and
* <code>:"string"</code> literals syntax, and by the various
* <code>to_sym</code> methods. The same Symbol object will be
* created for a given name or string for the duration of a program's