Skip to content

Commit

Permalink
fix(docs): make function call argument correspond to signature (#7878)
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfountain1996 committed Oct 20, 2023
1 parent 76861b0 commit 37c3efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/concepts/validation_decorator.md
Expand Up @@ -24,7 +24,7 @@ a = repeat('hello', 3)
print(a)
#> b'hellohellohello'

b = repeat('x', '4', separator=' ')
b = repeat('x', '4', separator=b' ')
print(b)
#> b'x x x x'

Expand Down

0 comments on commit 37c3efd

Please sign in to comment.