Skip to content

Commit 918bbee

Browse files
author
sigurd4
committed
Fix hyperlinks in docs
1 parent c2adbcd commit 918bbee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rcurry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::Curried;
88
///
99
/// X is the rest of the arguments left over after currying.
1010
///
11-
/// This trait is automatically implemented for anything implementing [FnOnce](FnOnce) which takes one or more argument.
11+
/// This trait is automatically implemented for anything implementing [FnOnce](core::ops::FnOnce) which takes one or more argument.
1212
///
1313
/// # Examples
1414
///
@@ -34,7 +34,7 @@ pub trait RCurriable<C, X: Tuple> = RCurry<C, Output: FnOnce<X>>;
3434

3535
/// A trait providing the method for currying from the right.
3636
///
37-
/// Only types that implement [FnOnce](FnOnce) and can take a rightmost argument of type `C` can be called once curried.
37+
/// Only types that implement [FnOnce](core::ops::FnOnce) and can take a rightmost argument of type `C` can be called once curried.
3838
///
3939
/// # Examples
4040
///

0 commit comments

Comments
 (0)