This is an automated email from the ASF dual-hosted git repository.
maciej pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new b45254f2d docs(go): solve typo in DeleteStream method. (#2972)
b45254f2d is described below
commit b45254f2de6d0fcb7f45e9645490924162bf937b
Author: Chengxi Luo <[email protected]>
AuthorDate: Wed Mar 18 15:38:14 2026 -0400
docs(go): solve typo in DeleteStream method. (#2972)
---
foreign/go/contracts/client.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/foreign/go/contracts/client.go b/foreign/go/contracts/client.go
index 0c963ed55..f3b6dac65 100644
--- a/foreign/go/contracts/client.go
+++ b/foreign/go/contracts/client.go
@@ -44,8 +44,8 @@ type Client interface {
// Authentication is required, and the permission to manage the streams.
UpdateStream(streamId Identifier, name string) error
- // DeleteStream delete a topic by unique ID or name.
- // Authentication is required, and the permission to manage the topics.
+ // DeleteStream delete a stream by unique ID or name.
+ // Authentication is required, and the permission to manage the streams.
DeleteStream(id Identifier) error
// GetTopic Get the info about a specific topic by unique ID or name.