File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ object Parsers {
151
151
/* ------------- ERROR HANDLING ------------------------------------------- */
152
152
153
153
/** The offset of the last time when a statement on a new line was definitely
154
- * encountered in the current scope or an outer scope\
154
+ * encountered in the current scope or an outer scope.
155
155
*/
156
156
private var lastStatOffset = - 1
157
157
@@ -505,7 +505,7 @@ object Parsers {
505
505
if (t1 ne t) t1 else dotSelectors(selector(t), finish)
506
506
}
507
507
508
- /** Dotelectors ::= { `.' ident()
508
+ /** DotSelectors ::= { `.' ident()
509
509
*
510
510
* Accept `.' separated identifiers acting as a selectors on given tree `t`.
511
511
* @param finish An alternative parse in case the token following a `.' is not an identifier.
@@ -521,7 +521,7 @@ object Parsers {
521
521
* | [Ident `.'] this
522
522
*
523
523
* @param thisOK If true, [Ident `.'] this is acceptable as the path.
524
- * If false, another selection is required aftre the `this`.
524
+ * If false, another selection is required after the `this`.
525
525
* @param finish An alternative parse in case the token following a `.' is not an identifier.
526
526
* If the alternative does not apply, its tree argument is returned unchanged.
527
527
*/
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ abstract class Message(val errorId: Int) { self =>
31
31
* > expected: String
32
32
* > found: Int
33
33
*
34
- * This message wil be placed underneath the position given by the enclosing
34
+ * This message will be placed underneath the position given by the enclosing
35
35
* `MessageContainer`
36
36
*/
37
37
def msg : String
You can’t perform that action at this time.
0 commit comments