Skip to content

Commit

Permalink
Drop some default argument expressions from readme (#60)
Browse files Browse the repository at this point in the history
Makes it more clear that they're not always needed
  • Loading branch information
JakeWharton authored Nov 2, 2024
1 parent c68af9b commit 7d69c04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Use multiple parameters to test all variations.
@Test
fun drinkSoda(
soda: String = burstValues("Pepsi", "Coke"),
ice: Boolean = true,
distribution: Distribution = Distribution.Can,
ice: Boolean,
distribution: Distribution,
) {
...
}
Expand Down

0 comments on commit 7d69c04

Please sign in to comment.