Skip to content

Commit

Permalink
fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietrich committed Mar 31, 2016
1 parent 9dc0f28 commit 13559c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions javaslang/generator/Generator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ def generateMainClasses(): Unit = {
* e.g. by {@code Match}:
*
* <pre><code>Match(i).of(
* Case(is(0), i -> run(() -&gt; System.out.println("zero"))),
* Case(is(1), i -> run(() -&gt; System.out.println("one"))),
* Case($$(), o -> run(() -&gt; System.out.println("many")))
* Case(is(0), i -&gt; run(() -&gt; System.out.println("zero"))),
* Case(is(1), i -&gt; run(() -&gt; System.out.println("one"))),
* Case($$(), o -&gt; run(() -&gt; System.out.println("many")))
* )</code></pre>
*
* @param unit A block of code to be run.
Expand Down
6 changes: 3 additions & 3 deletions javaslang/src-gen/main/java/javaslang/API.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ private API() {
* e.g. by {@code Match}:
*
* <pre><code>Match(i).of(
* Case(is(0), i -> run(() -&gt; System.out.println("zero"))),
* Case(is(1), i -> run(() -&gt; System.out.println("one"))),
* Case($(), o -> run(() -&gt; System.out.println("many")))
* Case(is(0), i -&gt; run(() -&gt; System.out.println("zero"))),
* Case(is(1), i -&gt; run(() -&gt; System.out.println("one"))),
* Case($(), o -&gt; run(() -&gt; System.out.println("many")))
* )</code></pre>
*
* @param unit A block of code to be run.
Expand Down

0 comments on commit 13559c9

Please sign in to comment.