From 5c81ecbdcf4d2f1a6cb1cbd9ca0db05dabf973c2 Mon Sep 17 00:00:00 2001 From: Jamie Willis Date: Sun, 25 Jun 2023 12:01:02 +0100 Subject: [PATCH] bold -> italic --- .../src/main/scala/parsley/errors/DefaultErrorBuilder.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsley/shared/src/main/scala/parsley/errors/DefaultErrorBuilder.scala b/parsley/shared/src/main/scala/parsley/errors/DefaultErrorBuilder.scala index 64ccea621..cf12df85a 100644 --- a/parsley/shared/src/main/scala/parsley/errors/DefaultErrorBuilder.scala +++ b/parsley/shared/src/main/scala/parsley/errors/DefaultErrorBuilder.scala @@ -156,7 +156,7 @@ object DefaultErrorBuilder { def pos(line: Int, col: Int): String = s"(line ${Integer.toUnsignedString(line)}, column ${Integer.toUnsignedString(col)})" /** Combines the alternatives, separated by commas/semicolons, with the final two separated - * by "or". An '''Oxford comma''' is added if there are more than two elements, as this + * by "or". An ''Oxford comma'' is added if there are more than two elements, as this * helps prevent ambiguity in the list. If the elements contain a comma, then semicolon * is used as the list separator. * @@ -167,7 +167,7 @@ object DefaultErrorBuilder { * by "or". If the elements contain a comma, then semicolon * is used as the list separator. * - * @param oxfordComma decides whether or not to employ an '''Oxford comma''' when there + * @param oxfordComma decides whether or not to employ an ''Oxford comma'' when there * more than two elements to join: this helps prevent ambiguity in the list. * @since 4.3.0 */