From 67cce7afff15926e595850fa05a107ad57e92629 Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Sun, 1 Apr 2018 12:35:22 +0900 Subject: [PATCH 1/2] Fix duplicated articles 'a a' in char.cr doc --- src/char.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/char.cr b/src/char.cr index 611c6de363a2..df825b4921ca 100644 --- a/src/char.cr +++ b/src/char.cr @@ -288,7 +288,7 @@ struct Char # # The backslash character \ can be used to escape ^ or - and # is otherwise ignored unless it appears at the end of a range - # or the end of a a set. + # or the end of a set. # # ``` # 'l'.in_set? "lo" # => true From adb991f054d2d35f400f03701d37909e920cf1bd Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Thu, 5 Apr 2018 21:19:53 +0900 Subject: [PATCH 2/2] Shorten sentence https://github.com/crystal-lang/crystal/pull/5894#discussion_r178449126 --- src/char.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/char.cr b/src/char.cr index df825b4921ca..d6d2c50fc065 100644 --- a/src/char.cr +++ b/src/char.cr @@ -288,7 +288,7 @@ struct Char # # The backslash character \ can be used to escape ^ or - and # is otherwise ignored unless it appears at the end of a range - # or the end of a set. + # or set. # # ``` # 'l'.in_set? "lo" # => true