Skip to content

Commit

Permalink
Loosen the newline assert condition on 'examples' field in Expression…
Browse files Browse the repository at this point in the history
…Info
  • Loading branch information
HyukjinKwon committed Apr 2, 2019
1 parent d575a45 commit 7f341e5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -79,7 +79,7 @@ public ExpressionInfo(
assert name != null;
assert arguments != null;
assert examples != null;
assert examples.isEmpty() || examples.startsWith(System.lineSeparator() + " Examples:");
assert examples.isEmpty() || examples.contains(" Examples:");
assert note != null;
assert since != null;

Expand Down

0 comments on commit 7f341e5

Please sign in to comment.