From 68bbefea52ed644c73746cca7cce14bc4d977d27 Mon Sep 17 00:00:00 2001 From: Patrick Elmer Date: Mon, 18 Sep 2023 12:27:24 +0900 Subject: [PATCH] Rephrase wording --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6d64ca..d487289 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ By default the first function is called automatically. All following functions i from typing import Annotated def hello( - name: Annotated[str, 'Person to call'], - amount: Annotated[int, 'Person to call', 'a']=1, + name: Annotated[str, 'Person to greet.'], + amount: Annotated[int, 'How often to greet.', 'a']=1, ): for _ in range(amount): print(f"Hello {name}!")