Skip to content

Commit

Permalink
[ruby/date] Fixed markups for bold [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jul 11, 2021
1 parent 8065670 commit c2ed5ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/date/date_core.c
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit c2ed5ab

Please sign in to comment.