From c2ed5ab08b0f508185b4abd2d28f045616e7c7f5 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 11 Jul 2021 20:27:21 +0900 Subject: [PATCH] [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 7e9bf16a07..f1017d22e9 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) * 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) * 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) * 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.