diff --git a/README.md b/README.md
index ca465ff..c8a6b43 100644
--- a/README.md
+++ b/README.md
@@ -1461,7 +1461,7 @@ class MyMetaClass(type):
         return type.__new__(cls, name, parents, attrs)
 ```
 * **New() is a class method that gets called before init(). If it returns an instance of a class, then that instance gets passed to init() as a 'self' argument.**
-* **It receives the same arguments as init(), except for the first one which is its class.**
+* **It receives the same arguments as init(), except for the first one which is a class.**
 
 ### Metaclass Attribute
 **When class is created it checks if it has metaclass defined. If not, it recursively checks if any of his parents has it defined and eventually comes to type.**