From b0dbb28e9f1712d7c44b35cb595e5cc60b0fe951 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Sat, 2 Nov 2024 09:57:40 -0400 Subject: [PATCH] Drop some default argument expressions from readme 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, ) { ... }