Skip to content

Commit 2550585

Browse files
committed
Fix exercism/advanced admonitions
1 parent 8222e77 commit 2550585

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

concepts/dates/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161161
This works because JavaScript will try to coerce the date to a primitive.
162162

163163
<!-- prettier-ignore -->
164-
~~~@exercism/advanced
164+
~~~exercism/advanced
165165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
167167

concepts/dates/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161161
This works because JavaScript will try to coerce the date to a primitive.
162162

163163
<!-- prettier-ignore -->
164-
~~~@exercism/advanced
164+
~~~exercism/advanced
165165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
167167

exercises/concept/appointment-time/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161161
This works because JavaScript will try to coerce the date to a primitive.
162162

163163
<!-- prettier-ignore -->
164-
~~~@exercism/advanced
164+
~~~exercism/advanced
165165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
167167

0 commit comments

Comments
 (0)