Skip to content

Commit 05cdddb

Browse files
committed
doc: fmt
1 parent 3160992 commit 05cdddb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/prompts/multi_select.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ impl MultiSelect<'_> {
111111
/// Prefaces the menu with a prompt.
112112
///
113113
/// By default, when a prompt is set the system also prints out a confirmation after
114-
/// the selection. You can opt-out of this with [report](#method.report).
114+
/// the selection. You can opt-out of this with [`report`](#method.report).
115115
pub fn with_prompt<S: Into<String>>(&mut self, prompt: S) -> &mut Self {
116116
self.prompt = Some(prompt.into());
117117
self

src/prompts/select.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl Select<'_> {
132132
/// Sets the select prompt.
133133
///
134134
/// By default, when a prompt is set the system also prints out a confirmation after
135-
/// the selection. You can opt-out of this with [report](#method.report).
135+
/// the selection. You can opt-out of this with [`report`](#method.report).
136136
///
137137
/// ## Examples
138138
/// ```rust,no_run

src/prompts/sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl Sort<'_> {
8383
/// Prefaces the menu with a prompt.
8484
///
8585
/// By default, when a prompt is set the system also prints out a confirmation after
86-
/// the selection. You can opt-out of this with [report](#method.report).
86+
/// the selection. You can opt-out of this with [`report`](#method.report).
8787
pub fn with_prompt<S: Into<String>>(&mut self, prompt: S) -> &mut Self {
8888
self.prompt = Some(prompt.into());
8989
self

0 commit comments

Comments
 (0)