Correct errors in docs. 54/11454/5
authorktimoney <kevin.timoney@est.tech>
Thu, 29 Jun 2023 14:30:26 +0000 (15:30 +0100)
committerktimoney <kevin.timoney@est.tech>
Fri, 30 Jun 2023 08:19:35 +0000 (09:19 +0100)
Issue-ID: NONRTRIC-887
Change-Id: I4b443154aa4642a5f984fa8e0fd93ad0a9f3d2b1
Signed-off-by: ktimoney <kevin.timoney@est.tech>
docs/callout-server.rst
docs/kafka-message-dispatcher.rst
docs/requirements-docs.txt
docs/simulator-api.rst
tox.ini

index f2556f4..4be73ff 100755 (executable)
@@ -110,7 +110,7 @@ It is possible to manipulate the response of all operations on the external serv
 POST
 ++++
 
-Force a specific response code for the all (the next) external server operation. Unless it is reset, it will always respond the same response code back.
+Force a specific response code for the all (the next) external server operation. Unless it is reset, it will always send the same response code back.
 
 **URL path:**
 
index 9bfebf7..b0adbfe 100755 (executable)
@@ -75,7 +75,7 @@ It is possible to manipulate the response of all operations on the Kafka Message
 POST
 ++++
 
-Force a specific response code for the all (the next) Kafka Message Dispatcher module operations. Unless it is reset, it will always respond the same response code back.
+Force a specific response code for the all (the next) Kafka Message Dispatcher module operations. Unless it is reset, it will always send the same response code back.
 
 **URL path:**
 
index 4cfc69f..59e8e0a 100644 (file)
@@ -1,3 +1,4 @@
+tox
 sphinx
 sphinx-rtd-theme
 sphinx-bootstrap-theme
@@ -7,3 +8,7 @@ sphinxcontrib-needs
 sphinxcontrib-swaggerdoc
 recommonmark
 lfdocs-conf
+urllib3~=1.26.15
+setuptools
+doc8
+docutils < 0.17
index 5449252..f0a512a 100644 (file)
@@ -93,7 +93,7 @@ None.
 Counters
 --------
 
-The simulator keeps counts of different things that can be accessed.
+The simulator keeps count of different things that can be accessed.
 
 /counter
 ~~~~~~~~
@@ -286,7 +286,7 @@ Force delay: <expected delay> sec set for all A1 responses
 Configure logging
 -----------------
 Detailed logging of the http headers and payload are activated by default. However, it is possible to turn this logging on or off.
-The 'off' state will only logg ip, url and respose code.
+The 'off' state will only log ip, url and respose code.
 
 /payload_logging/
 ~~~~~~~~~~~~~~~~~
diff --git a/tox.ini b/tox.ini
index 3a1149e..ffbcb1b 100644 (file)
--- a/tox.ini
+++ b/tox.ini
 
 [tox]
 envlist = code,docs,docs-linkcheck
-minversion = 2.0
+minversion = 4.0
 skipsdist = true
 
 ; basic test and coverage jobs
 [testenv:code]
-basepython = python3.8
+basepython = python3
 deps=
     pytest
     coverage
@@ -48,7 +48,7 @@ commands =
 # doc jobs
 [testenv:docs]
 allowlist_externals = echo
-basepython = python3.8
+basepython = python3
 deps = -r{toxinidir}/docs/requirements-docs.txt
 commands =
     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
@@ -56,7 +56,7 @@ commands =
 
 [testenv:docs-linkcheck]
 skipsdist = true
-basepython = python3.8
+basepython = python3
 deps = -r{toxinidir}/docs/requirements-docs.txt
 commands =
     sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck