Skip to content

Commit 727672f

Browse files
authored
docs typos (Azure#22992)
1 parent ad18b2b commit 727672f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

sdk/eventhub/azure-eventhub/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
author_email='[email protected]',
5656
url='https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/eventhub/azure-eventhub',
5757
classifiers=[
58-
"Development Status :: 5 - Production/Stable",
58+
"Development Status :: 4 - Beta",
5959
'Programming Language :: Python',
6060
'Programming Language :: Python :: 3 :: Only',
6161
'Programming Language :: Python :: 3.6',

sdk/schemaregistry/azure-schemaregistry-avroencoder/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ If message type or callback function is not provided, and by default, the encode
9494
The following sections provide several code snippets covering some of the most common Schema Registry tasks, including:
9595

9696
- [Encoding](#encoding)
97-
- [Deencoding](#decoding)
97+
- [Decoding](#decoding)
9898
- [Event Hubs Sending Integration](#event-hubs-sending-integration)
9999
- [Event Hubs Receiving Integration](#event-hubs-receiving-integration)
100100

101101
### Encoding
102102

103-
Use `AvroEncoder.encode` method to encode dict data with the given avro schema.
103+
Use `AvroEncoder.encode` method to encode dict data with the given Avro schema.
104104
The method will use a schema previously registered to the Schema Registry service and keep the schema cached for future encoding usage. It is also possible to avoid pre-registering the schema to the service and automatically register with the `encode` method by instantiating the `AvroEncoder` with the keyword argument `auto_register_schemas=True`.
105105

106106
```python
@@ -175,7 +175,7 @@ with encoder:
175175

176176
### Event Hubs Sending Integration
177177

178-
Integration with [Event Hubs][eventhubs_repo] to send encoded avro dict data as the body of EventData.
178+
Integration with [Event Hubs][eventhubs_repo] to send encoded Avro dict data as the body of EventData.
179179

180180
```python
181181
import os
@@ -219,7 +219,7 @@ with eventhub_producer, avro_encoder:
219219

220220
### Event Hubs Receiving Integration
221221

222-
Integration with [Event Hubs][eventhubs_repo] to receive `EventData` and decoded raw bytes into avro dict data.
222+
Integration with [Event Hubs][eventhubs_repo] to receive `EventData` and decoded raw bytes into Avro dict data.
223223

224224
```python
225225
import os

sdk/schemaregistry/azure-schemaregistry-avroencoder/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pip install azure-eventhub==5.9.0b1
4848

4949
1. Open a terminal window and `cd` to the directory that the samples are saved in.
5050
2. Set the environment variables specified in the sample file you wish to run.
51-
3. Follow the usage described in the file, e.g. `python avro_encoder.py`
51+
3. Follow the usage described in the file, e.g. `python encode_and_decode_event_data_message.py`
5252

5353
## Next steps
5454

0 commit comments

Comments
 (0)