Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dfawley committed Oct 10, 2023
1 parent 7b03f8d commit 9b61d75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions codes/codes.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ import (
"strconv"
)

// A Code is a status code according to the gRPC spec:
//
// https://github.com/grpc/grpc/blob/master/doc/statuscodes.md
// A Code is a status code defined according to the [gRPC documentation].
//
// Only the codes defined as consts in this package are valid codes. Do not use
// other code values. Behavior and interopability are implementation-specific
// and not guaranteed.
// other code values. Behavior of other codes is implementation-specific and
// interoperability between implementations is not guaranteed.
//
// [gRPC documentation]: https://github.com/grpc/grpc/blob/master/doc/statuscodes.md
type Code uint32

const (
Expand Down

0 comments on commit 9b61d75

Please sign in to comment.