diff --git a/README.md b/README.md index bb7f66e5e..0d4bda340 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ dependencies: [ In Xcode 11+, add Workflow directly as a dependency to your project with `File` > `Swift Packages` > `Add Package Dependency...`. Provide the git URL when prompted: `git@github.com:square/workflow-swift.git`. -### Cocoapods +### CocoaPods [![CocoaPods compatible](https://img.shields.io/cocoapods/v/Workflow.svg)](https://cocoapods.org/pods/Workflow) diff --git a/Samples/Tutorial/Tutorial4.md b/Samples/Tutorial/Tutorial4.md index 75d3c004f..96200a51d 100644 --- a/Samples/Tutorial/Tutorial4.md +++ b/Samples/Tutorial/Tutorial4.md @@ -18,7 +18,7 @@ A gap in the usability of the todo app is that it does not let the user create n The `TodoListWorkflow` has started to grow and has multiple concerns it's handling — specifically all of the `ListScreen` behavior, as well as the actions that can come from the `TodoEditWorkflow`. -When a single workflow seems to be doing too many things, a common pattern is to extract some of its responsibilty into a parent. +When a single workflow seems to be doing too many things, a common pattern is to extract some of its responsibility into a parent. ### TodoWorkflow