From d096644773804f7e78228db7c81042c44a8d851a Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 29 Aug 2019 15:55:05 +0100 Subject: [PATCH] Python docs: Fix typos and rst formatting issue. --- docs/language/learn-ql/python/introduce-libraries-python.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/language/learn-ql/python/introduce-libraries-python.rst b/docs/language/learn-ql/python/introduce-libraries-python.rst index 593f6daf037..3e437554e48 100644 --- a/docs/language/learn-ql/python/introduce-libraries-python.rst +++ b/docs/language/learn-ql/python/introduce-libraries-python.rst @@ -295,7 +295,7 @@ Type-inference classes The QL library for Python also supplies some classes for accessing the inferred types of values. The classes ``Value`` and ``ClassValue`` allow you to query the possible classes that an expression may have at runtime. For example, which ``ClassValue``\ s are iterable can be determined using the query: -**Find iterable ``ClassValue``\ s** +**Find iterable "ClassValue"s** .. code-block:: ql @@ -321,7 +321,7 @@ These classes are explained in more detail in :doc:`Tutorial: Points-to analysis Taint-tracking classes ---------------------- -The QL library for Python also supplies classes to specify taint-tracking analyses. The ``Configuration`` class can be overrridden to specify a taint-tracking analysis, by specifying source, sinks, sanitizers adn additional flwo steps. For those analyses that require additional types of taint to be tracked the ``TaintKind`` class can be overridden. +The QL library for Python also supplies classes to specify taint-tracking analyses. The ``Configuration`` class can be overrridden to specify a taint-tracking analysis, by specifying source, sinks, sanitizers and additional flow steps. For those analyses that require additional types of taint to be tracked the ``TaintKind`` class can be overridden. Summary