diff --git a/README.md b/README.md index 85e1c9b..6c9e016 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ reviews: - "src/Auth/**/*.cs" ``` -See [ARCHITECTURE.md][link-architecture] for the full design including fingerprinting, evidence -indexing, and compliance report formats. +See [THEORY-OF-OPERATIONS.md][link-theory-of-operations] for the theory of operations including fingerprinting, +evidence indexing, and compliance report formats. ## Installation @@ -177,5 +177,5 @@ By contributing to this project, you agree that your contributions will be licen [link-security]: https://sonarcloud.io/dashboard?id=demaconsulting_ReviewMark [link-nuget]: https://www.nuget.org/packages/DemaConsulting.ReviewMark [link-guide]: https://github.com/demaconsulting/ReviewMark/blob/main/docs/guide/guide.md -[link-architecture]: https://github.com/demaconsulting/ReviewMark/blob/main/ARCHITECTURE.md +[link-theory-of-operations]: https://github.com/demaconsulting/ReviewMark/blob/main/THEORY-OF-OPERATIONS.md [link-continuous-compliance]: https://github.com/demaconsulting/ContinuousCompliance diff --git a/ARCHITECTURE.md b/THEORY-OF-OPERATIONS.md similarity index 100% rename from ARCHITECTURE.md rename to THEORY-OF-OPERATIONS.md diff --git a/src/DemaConsulting.ReviewMark/GlobMatcher.cs b/src/DemaConsulting.ReviewMark/GlobMatcher.cs index aa4479e..45d1863 100644 --- a/src/DemaConsulting.ReviewMark/GlobMatcher.cs +++ b/src/DemaConsulting.ReviewMark/GlobMatcher.cs @@ -60,7 +60,7 @@ internal static IReadOnlyList GetMatchingFiles(string baseDirectory, IRe // Process patterns in order, maintaining a running set of matched files. // Each include pattern adds files; each exclude pattern removes files. - // This implements the documented ordered semantics from ARCHITECTURE.md, + // This implements the documented ordered semantics from THEORY-OF-OPERATIONS.md, // allowing a later include to re-add files removed by an earlier exclude. var fileSet = new HashSet(StringComparer.Ordinal); foreach (var pattern in patterns)