diff --git a/README.md b/README.md index dcba185..cb556b7 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ func main() { } ``` -We could kep adding cases to this handler function, but in a realistic application, it's convenient to define the logic for each case in a separate function. +We could keep adding cases to this handler function, but in a realistic application, it's convenient to define the logic for each case in a separate function. To refactor our code, let's create a simple dispatcher which maps task type to its handler.