Skip to content

Commit

Permalink
Merge pull request #2064 from chalex2k/feature/fix-docs
Browse files Browse the repository at this point in the history
Fix typo in example in docs
  • Loading branch information
cyberw authored Apr 1, 2022
2 parents 022dc24 + b4cebe1 commit 4a0d972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/writing-a-locustfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ to make other kinds of requests, validate the response, etc, see
@task(3)
def view_items(self):
for item_id in range(10)
for item_id in range(10):
self.client.get(f"/item?id={item_id}", name="/item")
time.sleep(1)
Expand Down

0 comments on commit 4a0d972

Please sign in to comment.