X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/dbf05bfd2ab79568fe706daa9112037192d4d9dd..f2c357f9fb922258dac9f808df0143e548c4bfdc:/ObjectiveC/Internal.hpp

diff --git a/ObjectiveC/Internal.hpp b/ObjectiveC/Internal.hpp
index a19b076..8606d55 100644
--- a/ObjectiveC/Internal.hpp
+++ b/ObjectiveC/Internal.hpp
@@ -1,5 +1,5 @@
-/* Cycript - Optimizing JavaScript Compiler/Runtime
- * Copyright (C) 2009-2015  Jay Freeman (saurik)
+/* Cycript - The Truly Universal Scripting Language
+ * Copyright (C) 2009-2016  Jay Freeman (saurik)
 */
 
 /* GNU Affero General Public License, Version 3 {{{ */
@@ -82,12 +82,12 @@ struct Messages :
     JSValueRef GetPrototype(JSContextRef context) const;
 };
 
-struct Internal :
-    CYValue<Internal, id>
+struct Interior :
+    CYValue<Interior, id>
 {
     CYProtect owner_;
 
-    _finline Internal(id value, JSContextRef context, JSObjectRef owner) :
+    _finline Interior(id value, JSContextRef context, JSObjectRef owner) :
         CYValue(value),
         owner_(context, owner)
     {