From 7d69c04d5ac77a44088dc54d3aba31f5dba64a08 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Sat, 2 Nov 2024 09:26:18 -0700 Subject: [PATCH] Drop some default argument expressions from readme (#60) Makes it more clear that they're not always needed --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 716925d..61b4f5e 100644 --- a/README.md +++ b/README.md @@ -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, ) { ... }