Skip to content

Commit

Permalink
Revert change.
Browse files Browse the repository at this point in the history
  • Loading branch information
robshakir committed May 24, 2022
1 parent 1aaf4d1 commit 91120c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ func ExampleClient_Once() {
Addrs: []string{"127.0.0.1:1234"},
Target: "dev",
Queries: []client.Path{{"*"}},
Type: Once, // client.Once in external packages.
Type: client.Once,
}
c := client.New()
defer c.Close()
Expand All @@ -512,7 +512,7 @@ func ExampleClient_Poll() {
Addrs: []string{"127.0.0.1:1234"},
Target: "dev",
Queries: []client.Path{{"*"}},
Type: Poll, // client.Poll in external packages.
Type: client.Poll,
}
c := client.New()
defer c.Close()
Expand Down

0 comments on commit 91120c9

Please sign in to comment.