summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/ast/parser/Parsers.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-04-10 11:06:29 -0500
committerGitHub <noreply@github.com>2017-04-10 11:06:29 -0500
commitf9514bb3ec70e63fa6a1ac65dd9d4e34a30529fe (patch)
tree6e2c010d98c98aaeb248d2889f759267f5bca6c3 /src/compiler/scala/tools/nsc/ast/parser/Parsers.scala
parentd9c3bd53433f202f0123733613baf3a382076323 (diff)
parenta23898e7e19c6d255c262f7465b8bc8c6e0b9b5d (diff)
downloadscala-f9514bb3ec70e63fa6a1ac65dd9d4e34a30529fe.tar.gz
scala-f9514bb3ec70e63fa6a1ac65dd9d4e34a30529fe.tar.bz2
scala-f9514bb3ec70e63fa6a1ac65dd9d4e34a30529fe.zip
Merge pull request #5786 from janekdb/topic/2.12.x-scaladoc-spelling-corrections-3
Fix Greek Mythology references in compiler package
Diffstat (limited to 'src/compiler/scala/tools/nsc/ast/parser/Parsers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/ast/parser/Parsers.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/ast/parser/Parsers.scala b/src/compiler/scala/tools/nsc/ast/parser/Parsers.scala
index 0cdba861a5..82664ba9c0 100644
--- a/src/compiler/scala/tools/nsc/ast/parser/Parsers.scala
+++ b/src/compiler/scala/tools/nsc/ast/parser/Parsers.scala
@@ -234,7 +234,7 @@ self =>
else currentRun.parsing.incompleteInputError(o2p(offset), msg)
}
- /** parse unit. If there are inbalanced braces,
+ /** parse unit. If there are unbalanced braces,
* try to correct them and reparse.
*/
def smartParse(): Tree = withSmartParsing {
@@ -812,7 +812,7 @@ self =>
false
} else true
- /** Strip the artifitial `Parens` node to create a tuple term Tree. */
+ /** Strip the artificial `Parens` node to create a tuple term Tree. */
def stripParens(t: Tree) = t match {
case Parens(ts) => atPos(t.pos) { makeSafeTupleTerm(ts, t.pos.point) }
case _ => t