Skip to content

Commit 641b69d

Browse files
committed
add backticks in doc comments
1 parent 773fc77 commit 641b69d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tokio/src/macros/join.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,13 @@ doc! {macro_rules! join {
226226
}}
227227

228228
#[derive(Default, Debug)]
229-
/// Rotates by one every [Self::num_skip] call up to COUNT - 1.
229+
/// Rotates by one every [`Self::num_skip``] call up to COUNT - 1.
230230
pub struct Rotator<const COUNT: u32> {
231231
next: u32,
232232
}
233233

234234
impl<const COUNT: u32> Rotator<COUNT> {
235-
/// Rotates by one every [Self::num_skip] call up to COUNT - 1
235+
/// Rotates by one every [`Self::num_skip``] call up to COUNT - 1
236236
#[inline]
237237
pub fn num_skip(&mut self) -> u32 {
238238
let num_skip = self.next;

0 commit comments

Comments
 (0)