Skip to content

Commit e7b5857

Browse files
committed
Make review comment changes
1 parent eb2fdda commit e7b5857

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/language/learn-ql/csharp/dataflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Unfortunately this will only give the expression in the argument, not the values
101101
and DataFlow::localFlow(DataFlow::exprNode(src), DataFlow::exprNode(call.getArgument(0)))
102102
select src
103103
104-
Then we can make the source more specific, for example an access to a public parameter. This query finds instances of a public parameter being used to open a file:
104+
Then we can make the source more specific, for example an access to a public parameter. This query finds instances where a public parameter is used to open a file:
105105

106106
.. code-block:: ql
107107

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
CodeQL library for C#
2-
=====================
1+
CodeQL libraries for C#
2+
=======================
33

4-
When you need to analyze a C# program, you can make use of the large collection of classes in the C# library for CodeQL.
4+
When you're analyzing a C# program in {{ site.data.variables.product.prodname_dotcom }}, you can make use of the large collection of classes in the CodeQL libraries for C#.
55

6-
About the C# library
7-
--------------------
6+
About the CodeQL libraries for C#
7+
---------------------------------
88

9-
There is an extensive library for analyzing CodeQL databases extracted from C# projects. The classes in this library present the data from a database in an object-oriented form and provide abstractions and predicates to help you with common analysis tasks. The library is implemented as a set of QL modules, that is, files with the extension ``.qll``. The module ``csharp.qll`` imports all the core C# library modules, so you can include the complete library by beginning your query with:
9+
There is an extensive core library for analyzing CodeQL databases extracted from C# projects. The classes in this library present the data from a database in an object-oriented form and provide abstractions and predicates to help you with common analysis tasks. The library is implemented as a set of QL modules, that is, files with the extension ``.qll``. The module ``csharp.qll`` imports all the core C# library modules, so you can include the complete library by beginning your query with:
1010

1111
.. code-block:: ql
1212

0 commit comments

Comments
 (0)