summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2010-08-02 13:53:58 +0000
committerMartin Odersky <odersky@gmail.com>2010-08-02 13:53:58 +0000
commit3d6fe98b652a591c7c865a71a62ef1d8e3365b58 (patch)
tree20159a87b9e9719a14a43c13dea0515e2b61cdbd /src
parented3c7e54fc700c6fa92d68f091be3da68662bd44 (diff)
downloadscala-3d6fe98b652a591c7c865a71a62ef1d8e3365b58.tar.gz
scala-3d6fe98b652a591c7c865a71a62ef1d8e3365b58.tar.bz2
scala-3d6fe98b652a591c7c865a71a62ef1d8e3365b58.zip
Fixed some typoes/errors in doc comments.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/io/AbstractFile.scala2
-rwxr-xr-xsrc/library/scala/reflect/generic/UnPickler.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/io/AbstractFile.scala b/src/compiler/scala/tools/nsc/io/AbstractFile.scala
index 4d86dbf114..fd96da4f73 100644
--- a/src/compiler/scala/tools/nsc/io/AbstractFile.scala
+++ b/src/compiler/scala/tools/nsc/io/AbstractFile.scala
@@ -131,7 +131,7 @@ abstract class AbstractFile extends AnyRef with Iterable[AbstractFile] {
/** Returns an output stream for writing the file */
def output: OutputStream
- /** Returns an unbuffered output stream for writing the file - defaults to out */
+ /** Returns a buffered output stream for writing the file - defaults to out */
def bufferedOutput: BufferedOutputStream = new BufferedOutputStream(output)
/** size of this file if it is a concrete file. */
diff --git a/src/library/scala/reflect/generic/UnPickler.scala b/src/library/scala/reflect/generic/UnPickler.scala
index ee021446bc..54ac1acc3d 100755
--- a/src/library/scala/reflect/generic/UnPickler.scala
+++ b/src/library/scala/reflect/generic/UnPickler.scala
@@ -42,7 +42,7 @@ abstract class UnPickler {
}
}
- /** To ne implemented in subclasses. Like `unpickle` but without the catch-all error handling.
+ /** To be implemented in subclasses. Like `unpickle` but without the catch-all error handling.
*/
def scan(bytes: Array[Byte], offset: Int, classRoot: Symbol, moduleRoot: Symbol, filename: String)