Skip to content

Commit d94e91b

Browse files
Apply suggestions from code review
Co-Authored-By: Felicity Chapman <felicitymay@github.com>
1 parent e2b446d commit d94e91b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/language/learn-ql/python/introduce-libraries-python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The rest of this tutorial summarizes the contents of the standard libraries for
1212
Overview of the library
1313
-----------------------
1414

15-
The CodeQL library for Python incorporates a large number of classes. Each class corresponds either to one kind of entity in Python source code or to an entity that can be derived form the source code using static analysis. These classes can be divided into four categories:
15+
The CodeQL library for Python incorporates a large number of classes. Each class corresponds either to one kind of entity in Python source code or to an entity that can be derived from the source code using static analysis. These classes can be divided into four categories:
1616

1717
- **Syntactic** - classes that represent entities in the Python source code.
1818
- **Control flow** - classes that represent entities from the control flow graphs.

docs/language/learn-ql/writing-queries/path-queries.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ To do this you need to define a `query predicate <https://help.semmle.com/QL/ql-
105105
This predicate defines the edge relations of the graph you are computing, and it is used to compute the paths related to each result that your query generates.
106106
You can import a predefined ``edges`` predicate from a path graph module in one of the standard data flow libraries. In addition to the path graph module, the data flow libraries contain the other ``classes``, ``predicates``, and ``modules`` that are commonly used in data flow analysis. The import statement to use depends on the language that you are analyzing.
107107

108-
For C/C++, C#. Java, and JavaScript you would use::
108+
For C/C++, C#, Java, and JavaScript you would use::
109109

110110
import DataFlow::PathGraph
111111

0 commit comments

Comments
 (0)