From 2e1b2dc3ba92ad1c9d83869a685a20f9791c251c Mon Sep 17 00:00:00 2001 From: flysand7 Date: Tue, 5 Dec 2023 23:17:19 +1100 Subject: [PATCH] strings: Fix up documentation of split_n --- core/strings/strings.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/core/strings/strings.odin b/core/strings/strings.odin index 2f36eddbe..539829a1a 100644 --- a/core/strings/strings.odin +++ b/core/strings/strings.odin @@ -885,6 +885,7 @@ Splits a string into parts based on a separator. If n < count of seperators, the Inputs: - s: The string to split. - sep: The separator string used to split the input string. +- n: The maximum amount of parts to split the string into. - allocator: (default is context.allocator) Returns: