Skip to content

Commit d92b714

Browse files
Merge pull request #127310 from changeworld/patch-32
Fix typo: NAMESAPCE -> NAMESPACE
2 parents ea5bca5 + 945356e commit d92b714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/event-hubs/event-hubs-capture-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ In this section, you create a Python script that sends 200 events (10 devices *
6262
devices.append(str(uuid.uuid4()))
6363

6464
# Create a producer client to produce and publish events to the event hub.
65-
producer = EventHubProducerClient.from_connection_string(conn_str="EVENT HUBS NAMESAPCE CONNECTION STRING", eventhub_name="EVENT HUB NAME")
65+
producer = EventHubProducerClient.from_connection_string(conn_str="EVENT HUBS NAMESPACE CONNECTION STRING", eventhub_name="EVENT HUB NAME")
6666

6767
for y in range(0,20): # For each device, produce 20 events.
6868
event_data_batch = producer.create_batch() # Create a batch. You will add events to the batch later.

0 commit comments

Comments
 (0)