You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While compiling obj-c using swift doc headers, while other keywords work, eg: - returns:, - see: etc. Parameters will only appear using the @param syntax.
Does not appear
- parameter str: The string to repeat.
Appears as a bullet point, including param
- param str: The string to repeat.
Appears as a parameter
@param The string to repeat.
Does not appear
- parameter str: The string to repeat.
- see: nothing
Appears as standard text above the see callout
- param str: The string to repeat.
- see: nothing
Appears as a bullet point
- param str: The string to repeat.
- returns: nothing
So the parameter keyword is being parsed, but not being outputted in the documentation,
The text was updated successfully, but these errors were encountered:
Right, currently you have to use the @param syntax in Obj-C mode. Not done much testing on non-HeaderDoc -- latest Xcode 'generate-doc-comment' still generates HeaderDoc syntax.
While compiling obj-c using swift doc headers, while other keywords work, eg:
- returns:
,- see:
etc. Parameters will only appear using the@param
syntax.Does not appear
Appears as a bullet point, including
param
Appears as a parameter
Does not appear
Appears as standard text above the
see callout
Appears as a bullet point
So the
parameter
keyword is being parsed, but not being outputted in the documentation,The text was updated successfully, but these errors were encountered: