You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2022/06/23 16:48:13 UTC

[pulsar] branch master updated: Removed a bracket. That made a code example not compile. (#16200)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d41831905e Removed a bracket. That made a code example not compile. (#16200)
0d41831905e is described below

commit 0d41831905eca6ddea25dd619e1949ed7484d67e
Author: entvex <en...@users.noreply.github.com>
AuthorDate: Thu Jun 23 18:48:05 2022 +0200

    Removed a bracket. That made a code example not compile. (#16200)
---
 site2/docs/client-libraries-dotnet.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site2/docs/client-libraries-dotnet.md b/site2/docs/client-libraries-dotnet.md
index b5d43896b0e..d07ea48d0be 100644
--- a/site2/docs/client-libraries-dotnet.md
+++ b/site2/docs/client-libraries-dotnet.md
@@ -88,7 +88,7 @@ This section describes how to create a producer.
   using DotPulsar;
   using DotPulsar.Extensions;
 
-  var producer = client.NewProducer())
+  var producer = client.NewProducer()
                        .Topic("persistent://public/default/mytopic")
                        .Create();