From 0ba9832831f14f13fb515f9a7eb0bd43ef200f38 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Fri, 26 Jan 2024 16:14:40 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Jim Crist-Harif --- ibis/expr/types/strings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ibis/expr/types/strings.py b/ibis/expr/types/strings.py index 5c151e2fe24b..9cb307fe866f 100644 --- a/ibis/expr/types/strings.py +++ b/ibis/expr/types/strings.py @@ -469,7 +469,7 @@ def hexdigest( self, how: Literal["md5", "sha1", "sha256", "sha512"] = "sha256", ) -> ir.StringValue: - """Compute the binary hash value of the input. + """Return the hash digest of the input as a hex encoded string. Parameters ---------- @@ -479,7 +479,7 @@ def hexdigest( Returns ------- StringValue - Hexadecimal representation of hash as a string + Hexadecimal representation of the hash as a string """ return ops.HashHexDigest(self, how.lower()).to_expr()