lib/*: fix docs to use "returns" instead of "return" (#442388)

This commit is contained in:
Johannes Kirschbauer
2025-10-06 08:09:54 +00:00
committed by GitHub
10 changed files with 35 additions and 35 deletions

View File

@@ -327,7 +327,7 @@ in
f b a;
/**
Return `maybeValue` if not null, otherwise return `default`.
Returns `maybeValue` if not null, otherwise return `default`.
# Inputs
@@ -529,7 +529,7 @@ in
## Integer operations
/**
Return minimum of two numbers.
Returns minimum of two numbers.
# Inputs
@@ -544,7 +544,7 @@ in
min = x: y: if x < y then x else y;
/**
Return maximum of two numbers.
Returns maximum of two numbers.
# Inputs