model: add `MEntity::is_broken`
[nit.git] / examples / int_stack.nit
index 1109bbb..eb2d9b3 100644 (file)
@@ -19,7 +19,7 @@ module int_stack
 
 # A stack of integer implemented by a simple linked list.
 # Note that this is only a toy class since a real linked list will gain to use
-# generics and extends interfaces, like Collection, from the standard library.
+# generics and extends interfaces, like `Collection`, from the `core` library.
 class IntStack
        # The head node of the list.
        # Null means that the stack is empty.