Archived
1

Added/Corrected Documentation

This commit is contained in:
Kim Wittenburg
2014-11-25 23:59:28 +01:00
parent 5bac2f0bbe
commit 4bc2fdead1
66 changed files with 380 additions and 710 deletions

View File

@@ -14,9 +14,16 @@
/*!
@typedef MPTokenType
@brief A type of a token identifies its behaviour in a mathematical
@brief The type of a <code>token</code> identifies its behaviour in a mathematical
context.
@constant MPEOFToken
A token that represents the end of the input. This token should
not be used to create a @c MPToken instance. It exists so that
you can safely send a @c tokenType message to @c nil without
getting confusing results. A token with this token type should be
interpreted as 'no token'.
@constant MPMultiplicationSymbolToken
A multiplication symbol.
@@ -82,8 +89,8 @@ typedef NS_ENUM(NSUInteger, MPTokenType) {
@brief Returns the receiver's token type.
@discussion The token type identifies what kind of token the receiver is. For
more information see the documentation on the @c MPTokenType
enum.
more information see the documentation on the <code>MPTokenType
</code> enum.
@return The receiver's token type.
*/