From e887aee79764ec265690e478a319fc18a98ff724 Mon Sep 17 00:00:00 2001 From: chengxi Date: Wed, 18 Mar 2026 11:15:19 -0400 Subject: [PATCH 1/2] doc(go): solve typo in DeleteStream method. --- 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 0c963ed555..f3b6dac655 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. From 5d02029f8911ece3376ed2399ec123184587453c Mon Sep 17 00:00:00 2001 From: chengxi Date: Wed, 18 Mar 2026 11:55:11 -0400 Subject: [PATCH 2/2] chore: trigger CI