Skip to content

Commit

Permalink
Remove extra space before Example
Browse files Browse the repository at this point in the history
  • Loading branch information
semistrict committed Sep 30, 2013
1 parent da93b41 commit 600fe25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/main/java/gherkin/formatter/PrettyFormatter.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void examples(Examples examples) {
out.println();
printComments(examples.getComments(), " ");
printTags(examples.getTags(), " ");
out.println(" " + examples.getKeyword() + ": " + examples.getName());
out.println(" " + examples.getKeyword() + ": " + examples.getName());
printDescription(examples.getDescription(), " ", true);
table(examples.getRows());
}
Expand Down

0 comments on commit 600fe25

Please sign in to comment.