diff --git a/_posts/2016-02-05-safe-casting-in-objc.md b/_posts/2016-02-05-safe-casting-in-objc.md index eb87a70..d8c2437 100644 --- a/_posts/2016-02-05-safe-casting-in-objc.md +++ b/_posts/2016-02-05-safe-casting-in-objc.md @@ -5,7 +5,7 @@ author: Toon category: cocoa --- -Althought Swift is gradually taking over Objective-C, we still use +Although Swift is gradually taking over Objective-C, we still use Objective-C for most of our iOS apps. And recently we ran into the following problem. @@ -21,7 +21,7 @@ something like: ``` This is quite lengthy and cumbersome to write. So someone mentioned -the following on our Slack channel: +the following on our Slack channel: > We need `dynamic_cast` in Objective-C.