From 970beac73bd30c70fe9f266a26df07f778c14463 Mon Sep 17 00:00:00 2001 From: Toon Claes Date: Thu, 15 Sep 2016 15:25:07 +0200 Subject: [PATCH] Fix typo Thx team. ![_disappointed_](http://media.tenor.co/images/3c558e4fb983040893141daf4a2bc6bb/raw) --- _posts/2016-02-05-safe-casting-in-objc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.