aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-13 20:25:36 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-13 20:25:36 +0000
commit5c1fd79f1d45d8ea47a0e68e8bbf3096adf0ea35 (patch)
treeba5d6d5016d9d6488106e61805a3813938e53853 /re.c
parent945d82ed206317e01a567827279b76d6238a9c68 (diff)
downloadruby-5c1fd79f1d45d8ea47a0e68e8bbf3096adf0ea35.tar.gz
re.c: [DOC] fix typos
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/re.c b/re.c
index a9ef3b6aad..88d051904f 100644
--- a/re.c
+++ b/re.c
@@ -887,7 +887,7 @@ make_regexp(const char *s, long len, rb_encoding *enc, int flags, onig_errmsg_bu
* <code>MatchData</code> encapsulates the result of matching a Regexp against
* string. It is returned by Regexp#match and
* String#match, and also stored in a global variable returned by
- * Regexp.last_match
+ * Regexp.last_match.
*
* Usage:
*
@@ -918,11 +918,11 @@ make_regexp(const char *s, long len, rb_encoding *enc, int flags, onig_errmsg_bu
* == Global variables equivalence
*
* Parts of last <code>MatchData</code> (returned by Regexp.last_match) are also
- * aliased as a global variables:
+ * aliased as global variables:
*
* * <code>$~</code> is <code>Regexp.last_match</code>;
* * <code>$&</code> is <code>Regexp.last_match[0]</code>;
- * * <code>$1</code>, <code>$2</code> and so on are
+ * * <code>$1</code>, <code>$2</code>, and so on are
* <code>Regexp.last_match[i]</code> (captures by number);
* * <code>$`</code> is <code>Regexp.last_match.pre_match</code>;
* * <code>$'</code> is <code>Regexp.last_match.post_match</code>;