Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Crist-Harif <jcristharif@gmail.com>
  • Loading branch information
gforsyth and jcrist authored Jan 26, 2024
1 parent 4efcdbf commit 0ba9832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibis/expr/types/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------
Expand All @@ -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()

Expand Down

0 comments on commit 0ba9832

Please sign in to comment.