summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-02-05 10:41:48 +0000
committermichelou <michelou@epfl.ch>2008-02-05 10:41:48 +0000
commitb7ff333ead97be345e13795576d1050a51c87e12 (patch)
tree33a1ff74397c0cd1b49d48d689e5bf3d09d9b3b1 /src
parentc295622baff14063ebc244731fd8586e436be9de (diff)
downloadscala-b7ff333ead97be345e13795576d1050a51c87e12.tar.gz
scala-b7ff333ead97be345e13795576d1050a51c87e12.tar.bz2
scala-b7ff333ead97be345e13795576d1050a51c87e12.zip
fixed typo
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/io/Source.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/io/Source.scala b/src/library/scala/io/Source.scala
index d6c6f42b66..5b4ad24858 100644
--- a/src/library/scala/io/Source.scala
+++ b/src/library/scala/io/Source.scala
@@ -123,7 +123,7 @@ object Source {
/** Creates Source from <code>file</code>, using given character encoding,
* setting its description to filename. Input is buffered in a buffer of
- * size <code>buffer_size</code>.
+ * size <code>bufferSize</code>.
*/
def fromFile(file: File, enc: String, bufferSize: Int): Source = {
val inpStream = new FileInputStream(file)