summaryrefslogtreecommitdiff
path: root/src/reflect/scala/reflect/internal/Symbols.scala
diff options
context:
space:
mode:
authorEitan Adler <lists@eitanadler.com>2016-01-17 10:05:48 -0800
committerEitan Adler <lists@eitanadler.com>2016-01-17 10:05:48 -0800
commit4f4432c78d26a8d3e5338f16a35ecd7d96cbe209 (patch)
treee97413e8624e0934b5e70c0367b9e5d67c14b2ad /src/reflect/scala/reflect/internal/Symbols.scala
parentf6bd7123fcce1bd72f141a8a0f95559c12bb5dd2 (diff)
downloadscala-4f4432c78d26a8d3e5338f16a35ecd7d96cbe209.tar.gz
scala-4f4432c78d26a8d3e5338f16a35ecd7d96cbe209.tar.bz2
scala-4f4432c78d26a8d3e5338f16a35ecd7d96cbe209.zip
Fix some simple extra words
The the word 'the' is often used twice. Fix that.
Diffstat (limited to 'src/reflect/scala/reflect/internal/Symbols.scala')
-rw-r--r--src/reflect/scala/reflect/internal/Symbols.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflect/scala/reflect/internal/Symbols.scala b/src/reflect/scala/reflect/internal/Symbols.scala
index 4bdb8e6da8..11e740117d 100644
--- a/src/reflect/scala/reflect/internal/Symbols.scala
+++ b/src/reflect/scala/reflect/internal/Symbols.scala
@@ -56,7 +56,7 @@ trait Symbols extends api.Symbols { self: SymbolTable =>
new FreeTypeSymbol(name, origin) initFlags flags
/**
- * This map stores the original owner the the first time the owner of a symbol is re-assigned.
+ * This map stores the original owner the first time the owner of a symbol is re-assigned.
* The original owner of a symbol is needed in some places in the backend. Ideally, owners should
* be versioned like the type history.
*/
@@ -500,7 +500,7 @@ trait Symbols extends api.Symbols { self: SymbolTable =>
case _ => new StubTermSymbol(this, name.toTermName, missingMessage)
}
- /** Given a field, construct a term symbol that represents the source construct that gave rise the the field */
+ /** Given a field, construct a term symbol that represents the source construct that gave rise the field */
def sugaredSymbolOrSelf = {
val getter = getterIn(owner)
if (getter == NoSymbol) {