Skip to content

Commit

Permalink
varExample class was confusingly called ValExample.
Browse files Browse the repository at this point in the history
  • Loading branch information
rzwitserloot committed May 29, 2017
1 parent 5dad9c3 commit a2a1f94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion usage_examples/experimental/varExample_post.jpage
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.ArrayList;
import lombok.var;

public class ValExample {
public class VarExample {
public String example() {
ArrayList<String> example = new ArrayList<String>();
example.add("Hello, World!");
Expand Down
2 changes: 1 addition & 1 deletion usage_examples/experimental/varExample_pre.jpage
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.ArrayList;
import lombok.var;

public class ValExample {
public class VarExample {
public String example() {
var example = new ArrayList<String>();
example.add("Hello, World!");
Expand Down

0 comments on commit a2a1f94

Please sign in to comment.