@@ -10,8 +10,8 @@ The first and only true Functional Reactive Programming framework for Scala.
1010
1111## Justification
1212
13- How can we say it's the first true FRP framework for Scala? Simple, because it is. In all other frameworks they add special
14- framework-specific functions to do things like math (ex. adding two variables together), collection building (ex. a
13+ How can we say it's the first true FRP framework for Scala? In all other frameworks they add special framework-specific
14+ functions to do things like math (ex. adding two variables together with a special ` + ` method ), collection building (ex. a
1515special implementation of ` ::: ` to concatenate two variables containing lists), or similar mechanisms to Scala's built-in
1616collection manipulation (ex. ` map ` ). These are great and mostly fill in the gaps necessary to solve your problems. But
1717the goal for Reactify was a bit loftier. We set out to create a system that actually allows you to use ANY Scala
@@ -30,13 +30,13 @@ reactify is published to Sonatype OSS and Maven Central currently supporting:
3030Configuring the dependency in SBT simply requires:
3131
3232```
33- libraryDependencies += "com.outr" %% "reactify" % "4.0.8 "
33+ libraryDependencies += "com.outr" %% "reactify" % "4.1.3 "
3434```
3535
3636or, for Scala.js / Scala Native / cross-building:
3737
3838```
39- libraryDependencies += "com.outr" %%% "reactify" % "4.0.8 "
39+ libraryDependencies += "com.outr" %%% "reactify" % "4.1.3 "
4040```
4141
4242## Concepts
@@ -228,7 +228,7 @@ edge. We can simplify things by leveraging a `Dep` instance to represent it:
228228val width: Var[Double] = Var(0.0)
229229
230230val left: Var[Double] = Var(0.0)
231- val center: Dep[Double, Double] = Dep(left)(_ + (width / 2.0), _ - (widht / 2.0))
231+ val center: Dep[Double, Double] = Dep(left)(_ + (width / 2.0), _ - (width / 2.0))
232232val right: Dep[Double, Double] = Dep(left)(_ + width, _ - width)
233233```
234234
@@ -250,7 +250,7 @@ val b = Var[String]("World")
250250val binding = a bind b
251251```
252252
253- By default this will assign the value of ` a ` to ` b ` and then changes to either will propagate to the other. If you want
253+ By default, this will assign the value of ` a ` to ` b ` and then changes to either will propagate to the other. If you want
254254to detach the binding:
255255
256256``` scala
0 commit comments