-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
docsThis change adds or pertains to documentationThis change adds or pertains to documentationdocsystemThe documentation building systemThe documentation building system
Description
It looks like Base is using the following convention to document return types
"""
foo(x::Integer) -> Integer
"""
foo(x::Integer) = xThe proposal is to use Julia's return syntax instead, e.g.
"""
foo(x::Integer)::Integer
"""
foo(x::Integer) = xrelated #4902
rfourquet, JeffBezanson, Sacha0, iagobaapellaniz, nalimilan and 8 more
Metadata
Metadata
Assignees
Labels
docsThis change adds or pertains to documentationThis change adds or pertains to documentationdocsystemThe documentation building systemThe documentation building system