@@ -56,7 +56,7 @@ For example remove lines containing `text`:
5656``` cs
5757verifySettings .ScrubLines (line => line .Contains (" text" ));
5858```
59- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L807-L811 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublines ' title =' Start of snippet ' >anchor</a ></sup >
59+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L804-L808 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublines ' title =' Start of snippet ' >anchor</a ></sup >
6060<!-- endSnippet -->
6161
6262
@@ -71,7 +71,7 @@ For example remove lines containing `text1` or `text2`
7171``` cs
7272verifySettings .ScrubLinesContaining (" text1" , " text2" );
7373```
74- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L813-L817 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontaining ' title =' Start of snippet ' >anchor</a ></sup >
74+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L810-L814 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontaining ' title =' Start of snippet ' >anchor</a ></sup >
7575<!-- endSnippet -->
7676
7777Case insensitive by default (StringComparison.OrdinalIgnoreCase).
@@ -83,7 +83,7 @@ Case insensitive by default (StringComparison.OrdinalIgnoreCase).
8383``` cs
8484verifySettings .ScrubLinesContaining (StringComparison .Ordinal , " text1" , " text2" );
8585```
86- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L819-L823 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontainingordinal ' title =' Start of snippet ' >anchor</a ></sup >
86+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L816-L820 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontainingordinal ' title =' Start of snippet ' >anchor</a ></sup >
8787<!-- endSnippet -->
8888
8989
@@ -98,7 +98,7 @@ For example converts lines to upper case:
9898``` cs
9999verifySettings .ScrubLinesWithReplace (line => line .ToUpper ());
100100```
101- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L825-L829 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublineswithreplace ' title =' Start of snippet ' >anchor</a ></sup >
101+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L822-L826 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublineswithreplace ' title =' Start of snippet ' >anchor</a ></sup >
102102<!-- endSnippet -->
103103
104104
@@ -111,7 +111,7 @@ Replaces `Environment.MachineName` with `TheMachineName`.
111111``` cs
112112verifySettings .ScrubMachineName ();
113113```
114- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L831-L835 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubmachinename ' title =' Start of snippet ' >anchor</a ></sup >
114+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L828-L832 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubmachinename ' title =' Start of snippet ' >anchor</a ></sup >
115115<!-- endSnippet -->
116116
117117
0 commit comments