In open source projects I see the following two ways of writing specs:
Specs in comments
@spec start_link() -> {ok, pid()}
Specs in source code
-spec start_link() -> {ok, pid()}
What's the difference? Is one preferred over the other?
|
|
|
the comment (@spec) version predates the source code (-spec) version. the latter is preferable. according to EDoc documentation:
|
||||
|
|