From bd7d5143d5f923a7e372838fd7f6c78b94576889 Mon Sep 17 00:00:00 2001 From: Chris Ramsay Date: Wed, 17 Dec 2014 09:08:10 +0000 Subject: [PATCH] Fix a missing backtick --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index c16092e38a..c80510ac52 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -38,7 +38,7 @@ well as what TaskSet class should define the user's "behaviour". TaskSets can be The :py:class:`HttpLocust ` class inherits from the :py:class:`Locust ` class, and it adds a client attribute which is an instance of -:py:class:`HttpSession , that can be used to make HTTP requests. +:py:class:`HttpSession `, that can be used to make HTTP requests. Another way we could declare tasks, which is usually more convenient, is to use the @task decorator. The following code is equivalent to the above::