From 0d630b6d8b69bebaeabeb7728f566130e388d27f Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Tue, 29 Oct 2024 17:58:13 -0400 Subject: [PATCH] Fix doc comment --- private/bufpkg/bufcas/digest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/bufpkg/bufcas/digest.go b/private/bufpkg/bufcas/digest.go index 401852da94..5ef59b0c2f 100644 --- a/private/bufpkg/bufcas/digest.go +++ b/private/bufpkg/bufcas/digest.go @@ -59,7 +59,7 @@ func (d DigestType) String() string { // // This reverses DigestType.String(). // -// Returns an error of type *ParseError if thie string could not be parsed. +// Returns an error of type *ParseError if the string could not be parsed. func ParseDigestType(s string) (DigestType, error) { d, ok := stringToDigestType[s] if !ok {