summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-11 20:27:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-11 20:28:23 +0900
commitc2ed5ab08b0f508185b4abd2d28f045616e7c7f5 (patch)
tree9dd30e3f4f6b9fa61ea1668e70cf3967f8d110aa /ext
parent8065670cfbfcf89249c2de12a513b5c7308c9aeb (diff)
[ruby/date] Fixed markups for bold [ci skip]
https://github.com/ruby/date/commit/404f9d2096
Diffstat (limited to 'ext')
-rw-r--r--ext/date/date_core.c6
1 files 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.