From a061b16ee35e3e58af7324f6549738b23f903b74 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Fri, 10 Nov 2017 15:11:56 -0800 Subject: [PATCH] coreplex: fix typo (#1104) --- src/main/scala/coreplex/Configs.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/coreplex/Configs.scala b/src/main/scala/coreplex/Configs.scala index d9231583..b5c1a1ac 100644 --- a/src/main/scala/coreplex/Configs.scala +++ b/src/main/scala/coreplex/Configs.scala @@ -248,7 +248,7 @@ class WithSynchronousRocketTiles extends Config((site, here, up) => { } }) -class WithAynchronousRocketTiles(depth: Int, sync: Int) extends Config((site, here, up) => { +class WithAsynchronousRocketTiles(depth: Int, sync: Int) extends Config((site, here, up) => { case RocketCrossingKey => up(RocketCrossingKey, site) map { r => r.copy(crossingType = AsynchronousCrossing(depth, sync)) }