Skip to content

Commit

Permalink
[fix][doc] fix schema get value doc problem (apache#17740)
Browse files Browse the repository at this point in the history
  • Loading branch information
congbobo184 authored Sep 21, 2022
1 parent 677f24a commit dba9c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site2/docs/schema-understand.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Pulsar gets the schema definition from the predefined `struct` using an Avro lib
```java
Consumer<User> consumer = client.newConsumer(Schema.AVRO(User.class)).subscribe();
User user = consumer.receive();
User user = consumer.receive().getValue();
```
</TabItem>
Expand Down

0 comments on commit dba9c08

Please sign in to comment.