kernel: add stack effect declaration to usage example of object class in docs

db4
Keita Haga 2011-01-16 17:57:32 +09:00
parent 92b9b92f38
commit fc048b6336
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ HELP: set-special-object ( obj n -- )
HELP: object
{ $class-description
"The class of all objects. If a generic word defines a method specializing on this class, the method is used as a fallback, if no other applicable method is found. For instance:"
{ $code "GENERIC: enclose" "M: number enclose 1array ;" "M: object enclose ;" }
{ $code "GENERIC: enclose ( number -- array )" "M: number enclose 1array ;" "M: object enclose ;" }
} ;
HELP: null