diff --git a/index.html b/index.html index 559e3a2e..6a3b5e45 100644 --- a/index.html +++ b/index.html @@ -306,7 +306,7 @@

// still error since we need the space even if we drop it @@ -345,7 +345,7 @@

val p5: Parser[Char] = alpha.surroundedBy(sp) // p5: Parser[Char] = Map( @@ -382,7 +382,7 @@

p4.parse(" a ") @@ -412,7 +412,7 @@

val p7: Parser[Char] = alpha.between(sp, digit) // p7: Parser[Char] = Map( @@ -449,7 +449,7 @@

p6.parse(" a1") @@ -501,7 +501,7 @@

val p2: Parser0[List[Char]] = alpha.rep0 // p2: Parser0[List[Char]] = OneOf0( @@ -514,7 +514,7 @@

val p3: Parser[String] = alpha.repAs[String] @@ -584,7 +584,7 @@

@@ -660,7 +660,7 @@

@@ -724,7 +724,7 @@

// epsilon failure @@ -776,7 +776,7 @@

p.parse(" 1") @@ -826,7 +826,7 @@

val p2 = sp *> digit // p2: cats.parse.Parser[Char] = Map( @@ -854,7 +854,7 @@

p1.backtrack.orElse(p2).parse(" 1") @@ -889,7 +889,7 @@

val p2 = sp *> digit // p2: cats.parse.Parser[Char] = Map( @@ -917,7 +917,7 @@

val p3 = digit // p3: cats.parse.Parser[Char] = CharIn( @@ -962,7 +962,7 @@

@@ -977,7 +977,7 @@

@@ -1073,7 +1073,7 @@

val p3 = (searchWord ~ sp.?).rep.string @@ -1115,7 +1115,7 @@

@@ -1156,7 +1156,7 @@

p4.parse("title:The Wind Has Risen")