diff options
-rw-r--r-- | src/gleam/function.gleam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/function.gleam b/src/gleam/function.gleam index 164a43c..daa997d 100644 --- a/src/gleam/function.gleam +++ b/src/gleam/function.gleam @@ -145,7 +145,7 @@ pub fn apply1(fun: fn(a) -> value, arg1: a) -> value { /// calls that function with the arguments /// and returns the function return value. /// -/// See `apply1` for more details. +/// See [`apply1`](#apply1) for more details. /// pub fn apply2(fun: fn(a, b) -> value, arg1: a, arg2: b) -> value { fun(arg1, arg2) @@ -155,7 +155,7 @@ pub fn apply2(fun: fn(a, b) -> value, arg1: a, arg2: b) -> value { /// calls that function with the arguments /// and returns the function return value. /// -/// See `apply1` for more details. +/// See [`apply1`](#apply1) for more details. /// pub fn apply3(fun: fn(a, b, c) -> value, arg1: a, arg2: b, arg3: c) -> value { fun(arg1, arg2, arg3) |