Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
myzhan committed Sep 7, 2023
1 parent 363d524 commit e54c24a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Because task1 is named foo and tasks2 is named bar, you can run them without con

.. code-block:: console
$ go run --run-tasks foo,bar
$ go run your-code.go --run-tasks foo,bar
In this case, task1 and task2 will be run for one time with no output.

Expand All @@ -79,7 +79,7 @@ Build

.. code-block:: console
$ go build -o you-code you-code.go
$ go build -o your-code your-code.go
Run
Expand All @@ -95,15 +95,15 @@ So far, dummy.py is necessary when starting a master, because locust needs such

Don't worry, dummy.py has nothing to do with your test.

2. Start you test program.
2. Start your test program.

.. code-block:: console
$ chmod +x ./you-code && ./you-code
$ chmod +x ./your-code && ./your-code
.. note::

To see all available options type: ``you-code --help``
To see all available options type: ``your-code --help``


Open up Locust's web interface
Expand Down

0 comments on commit e54c24a

Please sign in to comment.