Skip to content

Commit

Permalink
fix: typo cloud -> could in path.go (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
rriski authored Jan 25, 2025
1 parent aa0f7eb commit 4f6cb1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion path.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func parsePathDot(b *PathBuilder, buf []rune, cursor int) (*PathBuilder, []rune,
}
end:
if start == cursor {
return nil, nil, 0, fmt.Errorf("cloud not find by empty key: %w", ErrInvalidPathString)
return nil, nil, 0, fmt.Errorf("could not find by empty key: %w", ErrInvalidPathString)
}
return b.child(string(buf[start:cursor])), buf, cursor, nil
}
Expand Down

0 comments on commit 4f6cb1c

Please sign in to comment.