Merge pull request #17142 from 2m/wip-minor-typo-fixes

=str minor typo fixes and scala version bump
This commit is contained in:
Martynas Mickevičius 2015-04-14 16:53:39 +03:00
commit da5fde03c7
5 changed files with 14 additions and 14 deletions

View file

@ -242,7 +242,7 @@ final class Flow[-In, +Out, +Mat](private[stream] override val module: Module)
/** INTERNAL API */
override private[stream] def andThen[U](op: StageModule): Repr[U, Mat] = {
//No need to copy here, op is a fresh instanc
//No need to copy here, op is a fresh instance
if (this.isIdentity) new Flow(op).asInstanceOf[Repr[U, Mat]]
else new Flow(module.growConnect(op, shape.outlet, op.inPort).replaceShape(FlowShape(shape.inlet, op.outPort)))
}