Fix typo in rally/consts.py

There is typo in rally/consts.py.
This patch fixes below.
singltons => singletons

Change-Id: Ia4cd918a8b06a47dab5075ec6b28090be8cb1254
This commit is contained in:
Wenwu Peng 2015-09-08 15:51:16 +08:00
parent f139d3bd5c
commit f7bbd3c67f

View File

@ -17,7 +17,7 @@
There is a lot of situation when we would like to work with Enum or consts.
E.g. work around Tasks. We would like to use Enum in DB to store status of task
and also in migration that creates DB and in business logic to set some status
so to avoid copy paste or direct usage of enums values we create singltons
so to avoid copy paste or direct usage of enums values we create singletons
for each enum. (e.g TaskStatus)
"""