From 22d98e5f009518512baac2e486c6ea51657f06a3 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 2 Sep 2024 10:15:52 +0300 Subject: [PATCH] fix(strings): correct a typo in `startswith` docstring --- ibis/expr/types/strings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/expr/types/strings.py b/ibis/expr/types/strings.py index 7b08cc107ff9..0b8d5a9f8cdb 100644 --- a/ibis/expr/types/strings.py +++ b/ibis/expr/types/strings.py @@ -867,7 +867,7 @@ def join(self, strings: Sequence[str | StringValue] | ir.ArrayValue) -> StringVa return cls(strings, sep=self).to_expr() def startswith(self, start: str | StringValue) -> ir.BooleanValue: - """Determine whether `self` starts with `end`. + """Determine whether `self` starts with `start`. Parameters ----------