[前][次][番号順一覧][スレッド一覧]

ruby-changes:66751

From: Nobuyoshi <ko1@a...>
Date: Sun, 11 Jul 2021 20:30:48 +0900 (JST)
Subject: [ruby-changes:66751] c2ed5ab08b (master): [ruby/date] Fixed markups for bold [ci skip]

https://git.ruby-lang.org/ruby.git/commit/?id=c2ed5ab08b

From c2ed5ab08b0f508185b4abd2d28f045616e7c7f5 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sun, 11 Jul 2021 20:27:21 +0900
Subject: [ruby/date] Fixed markups for bold [ci skip]

https://github.com/ruby/date/commit/404f9d2096
---
 ext/date/date_core.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ext/date/date_core.c b/ext/date/date_core.c
index 7e9bf16..f1017d2 100644
--- a/ext/date/date_core.c
+++ b/ext/date/date_core.c
@@ -4353,7 +4353,7 @@ date_s__parse_internal(int argc, VALUE *argv, VALUE klass) https://github.com/ruby/ruby/blob/trunk/ext/date/date_core.c#L4353
  * Parses the given representation of date and time, and returns a
  * hash of parsed elements.
  *
- * This method **does not** function as a validator.  If the input
+ * This method *does not* function as a validator.  If the input
  * string does not match valid formats strictly, you may get a cryptic
  * result.  Should consider to use `Date._strptime` or
  * `DateTime._strptime` instead of this method as possible.
@@ -4377,7 +4377,7 @@ date_s__parse(int argc, VALUE *argv, VALUE klass) https://github.com/ruby/ruby/blob/trunk/ext/date/date_core.c#L4377
  * Parses the given representation of date and time, and creates a
  * date object.
  *
- * This method **does not** function as a validator.  If the input
+ * This method *does not* function as a validator.  If the input
  * string does not match valid formats strictly, you may get a cryptic
  * result.  Should consider to use `Date.strptime` instead of this
  * method as possible.
@@ -8018,7 +8018,7 @@ datetime_s_strptime(int argc, VALUE *argv, VALUE klass) https://github.com/ruby/ruby/blob/trunk/ext/date/date_core.c#L8018
  * Parses the given representation of date and time, and creates a
  * DateTime object.
  *
- * This method **does not** function as a validator.  If the input
+ * This method *does not* function as a validator.  If the input
  * string does not match valid formats strictly, you may get a cryptic
  * result.  Should consider to use `DateTime.strptime` instead of this
  * method as possible.
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]