Skip to content

Commit 7586969

Browse files
authored
Merge pull request #1242 from funkill/see-also-patches
Add colon after "See Also"
2 parents 7618986 + 6e73335 commit 7586969

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/flow_control/for.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ In the above snippets note the type of `match` branch, that is the key
113113
difference in the types of iteration. The difference in type then of course
114114
implies differing actions that are able to be performed.
115115

116-
### See also
116+
### See also:
117117

118118
[Iterator][iter]
119119

src/hello/print.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Implementing the `fmt::Display` trait automatically implements the
8080
check the [`std::fmt`][fmt] documentation for setting the number of
8181
decimals to display)
8282

83-
### See also
83+
### See also:
8484

8585
[`std::fmt`][fmt], [`macros`][macros], [`struct`][structs],
8686
and [`traits`][traits]

src/hello/print/fmt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Two hints if you get stuck:
8282
* You [may need to list each color more than once][named_parameters],
8383
* You can [pad with zeros to a width of 2][fmt_width] with `:02`.
8484

85-
### See also
85+
### See also:
8686

8787
[`std::fmt`][fmt]
8888

src/hello/print/print_debug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fn main() {
7272

7373
One can manually implement `fmt::Display` to control the display.
7474

75-
### See also
75+
### See also:
7676

7777
[attributes][attributes], [`derive`][derive], [`std::fmt`][fmt],
7878
and [`struct`][structs]

src/hello/print/print_display.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Display: 3.3 + 7.2i
116116
Debug: Complex { real: 3.3, imag: 7.2 }
117117
```
118118

119-
### See also
119+
### See also:
120120

121121
[`derive`][derive], [`std::fmt`][fmt], [macros], [`struct`][structs],
122122
[`trait`][traits], and [use][use]

src/hello/print/print_display/testcase_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Try changing the program so that the index of each element in the vector is also
6666
[0: 1, 1: 2, 2: 3]
6767
```
6868

69-
### See also
69+
### See also:
7070

7171
[`for`][for], [`ref`][ref], [`Result`][result], [`struct`][struct],
7272
[`?`][q_mark], and [`vec!`][vec]

src/std/rc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn main() {
4646
}
4747
```
4848

49-
### See also
49+
### See also:
5050

5151
[std::rc][1] and [Arc][2].
5252

src/std_misc/path.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn main() {
3838
Be sure to check at other `Path` methods (`posix::Path` or `windows::Path`) and
3939
the `Metadata` struct.
4040

41-
### See also
41+
### See also:
4242

4343
[OsStr][1] and [Metadata][2].
4444

0 commit comments

Comments
 (0)