Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull stdlib content from v0.19.0 #82

Merged
merged 1 commit into from
Nov 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/stdlib/stdlib-content.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ local html = import 'html.libsonnet';
{
name: 'splitLimitR',
params: ['str', 'c', 'maxsplits'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: 'As <code>std.splitLimit(str, c, maxsplits)</code> but will split from right to left.',
examples: [
{
Expand Down Expand Up @@ -1286,7 +1286,7 @@ local html = import 'html.libsonnet';
{
name: 'all',
params: ['arr'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: html.paragraphs([
|||
Return true if all elements of <code>arr</code> is true, false otherwise. <code>all([])</code> evaluates to true.
Expand All @@ -1299,7 +1299,7 @@ local html = import 'html.libsonnet';
{
name: 'any',
params: ['arr'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: html.paragraphs([
|||
Return true if any element of <code>arr</code> is true, false otherwise. <code>any([])</code> evaluates to false.
Expand Down