Skip to content

Commit 1939773

Browse files
committed
C#: Address review comments
1 parent c3ccdfa commit 1939773

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

csharp/autobuilder/Semmle.Autobuild/Autobuilder.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ interface IBuildRule
2929
public class Autobuilder
3030
{
3131
/// <summary>
32-
/// Full file paths of files found in the project directory, as well
32+
/// Full file paths of files found in the project directory, as well as
3333
/// their distance from the project root folder. The list is sorted
3434
/// by distance in ascending order.
3535
/// </summary>
3636
public IEnumerable<(string, int)> Paths => pathsLazy.Value;
3737
readonly Lazy<IEnumerable<(string, int)>> pathsLazy;
3838

3939
/// <summary>
40-
/// Gets a list of paths matching a set of extensions
41-
/// (including the "."), as well their distance from the project root folder.
40+
/// Gets a list of paths matching a set of extensions (including the "."),
41+
/// as well as their distance from the project root folder.
4242
/// The list is sorted by distance in ascending order.
4343
/// </summary>
4444
/// <param name="extensions">The extensions to find.</param>
@@ -47,8 +47,8 @@ public class Autobuilder
4747
Paths.Where(p => extensions.Contains(Path.GetExtension(p.Item1)));
4848

4949
/// <summary>
50-
/// Gets all paths matching a particular filename, as well
51-
/// their distance from the project root folder. The list is sorted
50+
/// Gets all paths matching a particular filename, as well as
51+
/// their distance from the project root folder. The list is sorted
5252
/// by distance in ascending order.
5353
/// </summary>
5454
/// <param name="name">The filename to find.</param>

0 commit comments

Comments
 (0)