Skip to content

Commit

Permalink
.*: fix revive package-comments lint issues (#7574)
Browse files Browse the repository at this point in the history
* .*: fix revive package-comments lint issues

* add example names to package comment

* improve grammer
  • Loading branch information
purnesh42H authored Sep 3, 2024
1 parent 00514a7 commit cd05c9e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/features/csm_observability/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary client is a client for the CSM Observability example.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions examples/features/csm_observability/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary server is a server for the CSM Observability example.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions examples/features/customloadbalancer/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary client is a client for the custom load balancer example.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions examples/features/customloadbalancer/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary server is a server for the custom load balancer example.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions examples/features/opentelemetry/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary client is a client for the OpenTelemetry example.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions examples/features/opentelemetry/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*/

// Binary server is a server for the OpenTelemetry example.
package main

import (
Expand Down
5 changes: 5 additions & 0 deletions interop/observability/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
*
*/

// Binary client is an interop client for Observability.
//
// See interop test case descriptions [here].
//
// [here]: https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md
package main

import (
Expand Down
5 changes: 5 additions & 0 deletions interop/observability/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
*
*/

// Binary server is an interop server for Observability.
//
// See interop test case descriptions [here].
//
// [here]: https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md
package main

import (
Expand Down

0 comments on commit cd05c9e

Please sign in to comment.