From 6cb8bf2c72304b38da5aabf58658464b58abb905 Mon Sep 17 00:00:00 2001 From: inoas Date: Tue, 29 Nov 2022 07:07:06 +0100 Subject: add apply1-apply3 crosslinks --- src/gleam/function.gleam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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) -- cgit v1.2.3