Skip to content

Commit

Permalink
Fix incorrect str quotes in repr example
Browse files Browse the repository at this point in the history
  • Loading branch information
RNKuhns committed Jun 9, 2024
1 parent c8d7ebc commit 1217c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,9 +430,9 @@ custom callable when the field is set to its default value.
>>> C()
C()
>>> C(y=3)
C(y='foo: 3')
C(y=foo: 3)
>>> C(x=2, y=3)
C(y='foo: 3')
C(y=foo: 3)
>>> C(z=4)
C(z=4)
```
Expand Down

0 comments on commit 1217c7f

Please sign in to comment.