Skip to content

Commit 1d61585

Browse files
committed
Replace LaTeX-style quotations
1 parent ff30334 commit 1d61585

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

shared/src/main/scala/scala/util/parsing/combinator/token/Tokens.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package token
2222
* @author Adriaan Moors
2323
*/
2424
trait Tokens {
25-
/** Objects of this type are produced by a lexical parser or ``scanner'', and consumed by a parser.
25+
/** Objects of this type are produced by a lexical parser or ``scanner``, and consumed by a parser.
2626
*
2727
* @see [[scala.util.parsing.combinator.syntactical.TokenParsers]]
2828
*/

shared/src/main/scala/scala/util/parsing/input/OffsetPosition.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package util.parsing.input
1616
import scala.collection.mutable.ArrayBuffer
1717

1818
/** `OffsetPosition` is a standard class for positions
19-
* represented as offsets into a source ``document''.
19+
* represented as offsets into a source ``document``.
2020
*
2121
* @param source The source document
2222
* @param offset The offset indicating the position

shared/src/main/scala/scala/util/parsing/input/Position.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ trait Position {
3939
/** Returns a string representation of the `Position`, of the form `line.column`. */
4040
override def toString = ""+line+"."+column
4141

42-
/** Returns a more ``visual'' representation of this position.
42+
/** Returns a more ``visual`` representation of this position.
4343
* More precisely, the resulting string consists of two lines:
4444
* 1. the line in the document referred to by this position
4545
* 2. a caret indicating the column

0 commit comments

Comments
 (0)