Skip to content

Commit

Permalink
fix: fixed typo (#3395)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarium committed Aug 15, 2024
1 parent d6fca5e commit 084c8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/metadata/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func parseMetadata(meta interface{}) (*dpb.FileDescriptorProto, error) {
if enc, ok := meta.([]byte); ok {
return decodeFileDesc(enc)
}
return nil, fmt.Errorf("proto not sumpport metadata: %v", meta)
return nil, fmt.Errorf("proto does not support metadata: %v", meta)
}

// decodeFileDesc does decompression and unmarshalling on the given
Expand Down

0 comments on commit 084c8b4

Please sign in to comment.