From: Jean-Christophe Beaupré Date: Thu, 30 Jun 2016 14:17:49 +0000 (-0400) Subject: model: Fix minor documentation mistakes X-Git-Url: http://nitlanguage.org?hp=d5b444a7e8309fee33423ec6bb6f580052b9d286 model: Fix minor documentation mistakes Signed-off-by: Jean-Christophe Beaupré --- diff --git a/src/model/model.nit b/src/model/model.nit index b148eef..660de85 100644 --- a/src/model/model.nit +++ b/src/model/model.nit @@ -519,12 +519,12 @@ class MClass # The principal static type of the class. # - # For non-generic class, mclass_type is the only `MClassType` based + # For non-generic class, `mclass_type` is the only `MClassType` based # on self. # # For a generic class, the arguments are the formal parameters. - # i.e.: for the class Array[E:Object], the `mclass_type` is Array[E]. - # If you want Array[Object] the see `MClassDef::bound_mtype` + # i.e.: for the class `Array[E:Object]`, the `mclass_type` is `Array[E]`. + # If you want `Array[Object]`, see `MClassDef::bound_mtype`. # # For generic classes, the mclass_type is also the way to get a formal # generic parameter type.