From 8540e58b616327d3bf1093eef448e0e309f0748d Mon Sep 17 00:00:00 2001 From: Tom Counsell Date: Wed, 7 Jan 2015 16:41:30 +0000 Subject: [PATCH] Typo fix --- doc/site/classes.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/classes.markdown b/doc/site/classes.markdown index 14512019..134ffdcf 100644 --- a/doc/site/classes.markdown +++ b/doc/site/classes.markdown @@ -240,7 +240,7 @@ class using `is` when you declare the class: This declares a new class `Pegasus` that inherits from `Unicorn`. -Note that you should not create classes that inherit from the the built-in types (Bool, Num, String, Range, List). The built-in types expect their internal bit representation to be very specific and get horribly confused when you invoke one of the inherited built-in methods on the derived type. +Note that you should not create classes that inherit from the built-in types (Bool, Num, String, Range, List). The built-in types expect their internal bit representation to be very specific and get horribly confused when you invoke one of the inherited built-in methods on the derived type. The metaclass hierarchy does *not* parallel the regular class hierarchy. So, if `Pegasus` inherits from `Unicorn`, `Pegasus`'s metaclass will not inherit from