Skip to content

Commit ee7b0b8

Browse files
Christian Kurzfredrikekre
Christian Kurz
authored andcommitted
Added "Provide hints to similar functions" (#23788)
* Added "Provide hints to similar functions" This PR proposes a standard wording for hints to similar functions. Feel free to correct and change! * added ms-list formatting, ref-links * Removed short description style * Added frederiks corrections * whitespace * Bold `See also`, add newline, wording suggestions * Removed bold * fix colon
1 parent 0588ba4 commit ee7b0b8

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

doc/src/manual/documentation.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,15 @@ As in the example above, we recommend following some simple conventions when wri
8181
...
8282
"""
8383
```
84-
5. Include any code examples in an `# Examples` section.
84+
5. Provide hints to related functions.
85+
86+
Sometimes there are functions of related functionality. To increase discoverability please provide
87+
a short list of these in a `See also:` paragraph.
88+
89+
```
90+
See also: [`bar!`](@ref), [`baz`](@ref), [`baaz`](@ref)
91+
```
92+
6. Include any code examples in an `# Examples` section.
8593

8694
Examples should, whenever possible, be written as *doctests*. A *doctest* is a fenced code block
8795
(see [Code blocks](@ref)) starting with ````` ```jldoctest````` and contains any number of `julia>`
@@ -127,13 +135,13 @@ As in the example above, we recommend following some simple conventions when wri
127135
!!! tip
128136
Wherever possible examples should be **self-contained** and **runnable** so that readers are able
129137
to try them out without having to include any dependencies.
130-
6. Use backticks to identify code and equations.
138+
7. Use backticks to identify code and equations.
131139

132140
Julia identifiers and code excerpts should always appear between backticks ``` ` ``` to enable
133141
highlighting. Equations in the LaTeX syntax can be inserted between double backticks ``` `` ```.
134142
Use Unicode characters rather than their LaTeX escape sequence, i.e. ``` ``α = 1`` ``` rather
135143
than ``` ``\\alpha = 1`` ```.
136-
7. Place the starting and ending `"""` characters on lines by themselves.
144+
8. Place the starting and ending `"""` characters on lines by themselves.
137145

138146
That is, write:
139147

@@ -156,7 +164,7 @@ As in the example above, we recommend following some simple conventions when wri
156164
```
157165

158166
This makes it more clear where docstrings start and end.
159-
8. Respect the line length limit used in the surrounding code.
167+
9. Respect the line length limit used in the surrounding code.
160168

161169
Docstrings are edited using the same tools as code. Therefore, the same conventions should apply.
162170
It it advised to add line breaks after 92 characters.

0 commit comments

Comments
 (0)