aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoas <mail@inoas.com>2022-11-29 07:07:06 +0100
committerLouis Pilfold <louis@lpil.uk>2022-12-01 10:10:52 +0000
commit6cb8bf2c72304b38da5aabf58658464b58abb905 (patch)
tree17ea9adcc62573066b5615ad35d8e1c65cbf57f3
parent6f2498d0f5d7bdd96d2a65c19905bb409b525663 (diff)
downloadgleam_stdlib-6cb8bf2c72304b38da5aabf58658464b58abb905.tar.gz
gleam_stdlib-6cb8bf2c72304b38da5aabf58658464b58abb905.zip
add apply1-apply3 crosslinks
-rw-r--r--src/gleam/function.gleam4
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)