Skip to content

Commit 10fbbce

Browse files
committed
Updates to docs and tweaks to naming.
1 parent a9f3a6d commit 10fbbce

File tree

5 files changed

+468
-480
lines changed

5 files changed

+468
-480
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,5 @@ Read more about the available options on the [Options](/docs/Options.md) page.
3838
- [Difference engine internals](/docs/DiffingEngineInternals.md)
3939

4040
## Acknowledgments
41-
Big thanks to [Florian Rappl](https://github.com/FlorianRappl) from the AngleSharp team for providing ideas, input and sample code for working with AngleSharp.
42-
43-
Another shout-out goes to [XMLUnit](https://www.xmlunit.org). It is a great XML diffing library, and it has been a great inspiration for creating this library.
41+
- [Florian Rappl](https://github.com/FlorianRappl) from the AngleSharp team for providing ideas, input and sample code for working with AngleSharp.
42+
- [XMLUnit](https://www.xmlunit.org) has been a great inspiration for creating this library.

docs/DiffingEngineInternals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The heart of the library is the `HtmlDifferenceEngine` class, which goes through
33

44
The `HtmlDifferenceEngine` class depends on three _strategies_, the `IFilterStrategy`, `IMatcherStrategy`, and `ICompareStrategy` types. These are used in the highlighted activities in the diagram. With those, we can control what nodes and attributes take part in the comparison (filter strategy), how control and test nodes and attributes are matched up for comparison (matching strategy), and finally, how nodes and attributes are determined to be same or different (compare strategy).
55

6-
It starts with a call to the `Compare(INodeList controlNodes, INodeList testNodes)` and recursively calls itself when nodes have child nodes.
6+
It starts with a call to the `Compare()` and recursively calls itself when nodes have child nodes.
77

88
![img](HtmlDifferenceEngineFlow.svg)
99

0 commit comments

Comments
 (0)