Skip to content

Commit

Permalink
Doc; support 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Lister committed Nov 3, 2016
1 parent 8d7dfa6 commit f50bc2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -6,9 +6,9 @@
# Quickstart

Using SBT:
`libraryDependencies += "com.github.marklister" %% "product-collections" % "1.4.3"`
`libraryDependencies += "com.github.marklister" %% "product-collections" % "1.4.5"`
or for scala-js
`libraryDependencies += "com.github.marklister" %%% "product-collections" % "1.4.3"`
`libraryDependencies += "com.github.marklister" %%% "product-collections" % "1.4.5"`

#Documentation

Expand Down
2 changes: 1 addition & 1 deletion shared/src/main/scala/collections/io/CSVReader.scala
Expand Up @@ -19,7 +19,7 @@ class CSVReader(val reader: java.io.Reader,

final val b = new InputBuffer(reader)
private[this] final val maxChar: Char = Seq(quoteChar, delimiter, CSVReader.cr, CSVReader.eol, CSVReader.eof).max
val currentOutput: ArrayBuilder[String] = new ArrayBuilder.ofRef[String]
val currentOutput: ArrayBuilder[String] = new ArrayBuilder.ofRef[String]
val currentField = new java.lang.StringBuilder(40)
var line = headerRows

Expand Down

0 comments on commit f50bc2f

Please sign in to comment.