Skip to content

Commit 6bfd4a5

Browse files
authored
Fix typo in Match(...) example, Tuple => (#46)
1 parent f519b5e commit 6bfd4a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docs/asciidoc/pattern_matching.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Match(_try).of(
190190
[source,java]
191191
----
192192
Match(_try).of(
193-
Case($Success(Tuple2($("a"), $())), tuple2 -> ...),
193+
Case($Success($Tuple2($("a"), $())), tuple2 -> ...),
194194
Case($Failure($(instanceOf(Error.class))), error -> ...)
195195
);
196196
----

0 commit comments

Comments
 (0)