Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/flow_control/for.md
Original file line number Diff line number Diff line change
@@ -113,7 +113,7 @@ In the above snippets note the type of `match` branch, that is the key
difference in the types of iteration. The difference in type then of course
implies differing actions that are able to be performed.

### See also
### See also:

[Iterator][iter]

2 changes: 1 addition & 1 deletion src/hello/print.md
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ Implementing the `fmt::Display` trait automatically implements the
check the [`std::fmt`][fmt] documentation for setting the number of
decimals to display)

### See also
### See also:

[`std::fmt`][fmt], [`macros`][macros], [`struct`][structs],
and [`traits`][traits]
2 changes: 1 addition & 1 deletion src/hello/print/fmt.md
Original file line number Diff line number Diff line change
@@ -82,7 +82,7 @@ Two hints if you get stuck:
* You [may need to list each color more than once][named_parameters],
* You can [pad with zeros to a width of 2][fmt_width] with `:02`.

### See also
### See also:

[`std::fmt`][fmt]

2 changes: 1 addition & 1 deletion src/hello/print/print_debug.md
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ fn main() {

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

### See also
### See also:

[attributes][attributes], [`derive`][derive], [`std::fmt`][fmt],
and [`struct`][structs]
2 changes: 1 addition & 1 deletion src/hello/print/print_display.md
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ Display: 3.3 + 7.2i
Debug: Complex { real: 3.3, imag: 7.2 }
```

### See also
### See also:

[`derive`][derive], [`std::fmt`][fmt], [macros], [`struct`][structs],
[`trait`][traits], and [use][use]
2 changes: 1 addition & 1 deletion src/hello/print/print_display/testcase_list.md
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ Try changing the program so that the index of each element in the vector is also
[0: 1, 1: 2, 2: 3]
```

### See also
### See also:

[`for`][for], [`ref`][ref], [`Result`][result], [`struct`][struct],
[`?`][q_mark], and [`vec!`][vec]
2 changes: 1 addition & 1 deletion src/std/rc.md
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ fn main() {
}
```

### See also
### See also:

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

2 changes: 1 addition & 1 deletion src/std_misc/path.md
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ fn main() {
Be sure to check at other `Path` methods (`posix::Path` or `windows::Path`) and
the `Metadata` struct.

### See also
### See also:

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