From: Jay Freeman (saurik) Date: Sat, 24 Oct 2009 19:37:17 +0000 (+0000) Subject: Fixed a typo I made while coding on my iPhone, on an airplane. X-Git-Tag: v0.9.432~258 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/7f0a9220982e73064c2aac5d4da3c3fc9705a027?ds=inline Fixed a typo I made while coding on my iPhone, on an airplane. --- diff --git a/Library.mm b/Library.mm index d61a4b2..f74498b 100644 --- a/Library.mm +++ b/Library.mm @@ -1733,7 +1733,7 @@ Class CYCastClass(apr_pool_t *pool, JSContextRef context, JSValueRef value) { id self(CYCastNSObject(pool, context, value)); if (CYIsClass(self)) return (Class) self; - _throw(NSInvalidArgumentException, "got somwthing that is not a Class"); + _throw(NSInvalidArgumentException, "got something that is not a Class"); return NULL; }