Skip to content

Commit

Permalink
Reformat with scalafmt 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Feb 9, 2022
1 parent 192851b commit afd56fd
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Binding/src/main/scala/com/thoughtworks/binding/Binding.scala
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ import scala.collection.SeqOps
import scala.collection.mutable.ArrayBuffer

/** @groupname typeClasses
* Type class instance
* Type class instance
* @groupname implicits
* Implicits Conversions
* Implicits Conversions
* @groupname expressions
* Binding Expressions
* Binding Expressions
* @groupdesc expressions
* AST nodes of binding expressions
* @author
Expand Down Expand Up @@ -1819,7 +1819,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
*
* @example
* Given a sequence of [[Observable]]s,
* {{{
* {{{
* import com.thoughtworks.binding.Binding._, BindingInstances.monadSyntax._
* val observable0 = Var[Option[String]](None)
* val observable1 = Var[Option[String]](Some("1"))
Expand All @@ -1846,7 +1846,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
* observable8,
* observable9,
* )
* }}}
* }}}
*
* when concatenate them together,
*
Expand Down Expand Up @@ -1951,7 +1951,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
*
* @example
* Circular referenced [[Observable]]s can be created with the help of [[defer]]
* {{{
* {{{
* import Binding._
* val source = Var("init")
* lazy val observable1: Rx.Observable[String] =
Expand All @@ -1969,7 +1969,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
* Some(observable1.getClass.getSimpleName)
* }
* )
* }}}
* }}}
*
* Initially, `observable1` did not subscribe `observable2` because `source` is `init`,
* {{{
Expand Down Expand Up @@ -2003,7 +2003,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
*
* @example
* Given a sequence of [[Observable]]s,
* {{{
* {{{
* import com.thoughtworks.binding.Binding._, BindingInstances.monadSyntax._
* val observable0 = Var[Option[String]](None)
* val observable1 = Var[Option[String]](Some("1"))
Expand All @@ -2030,7 +2030,7 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
* observable8,
* observable9,
* )
* }}}
* }}}
*
* when merge them together,
*
Expand Down Expand Up @@ -2127,10 +2127,10 @@ object Binding extends MonadicFactory.WithTypeClass[Monad, Binding] {
*
* @example
* Given a source observable,
* {{{
* {{{
* import com.thoughtworks.binding.Binding._
* val observable = Var[Option[String]](Some("1"))
* }}}
* }}}
*
* when converting it into a [[BindingSeq]],
*
Expand Down

0 comments on commit afd56fd

Please sign in to comment.