@@ -59,7 +59,7 @@ For example remove lines containing `text`:
5959``` cs
6060verifySettings .ScrubLines (line => line .Contains (" text" ));
6161```
62- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1347-L1351 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublines ' title =' Start of snippet ' >anchor</a ></sup >
62+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1348-L1352 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublines ' title =' Start of snippet ' >anchor</a ></sup >
6363<!-- endSnippet -->
6464
6565
@@ -74,7 +74,7 @@ For example remove lines containing `text1` or `text2`
7474``` cs
7575verifySettings .ScrubLinesContaining (" text1" , " text2" );
7676```
77- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1353-L1357 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontaining ' title =' Start of snippet ' >anchor</a ></sup >
77+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1354-L1358 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontaining ' title =' Start of snippet ' >anchor</a ></sup >
7878<!-- endSnippet -->
7979
8080Case insensitive by default (StringComparison.OrdinalIgnoreCase).
@@ -86,7 +86,7 @@ Case insensitive by default (StringComparison.OrdinalIgnoreCase).
8686``` cs
8787verifySettings .ScrubLinesContaining (StringComparison .Ordinal , " text1" , " text2" );
8888```
89- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1359-L1363 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontainingordinal ' title =' Start of snippet ' >anchor</a ></sup >
89+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1360-L1364 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublinescontainingordinal ' title =' Start of snippet ' >anchor</a ></sup >
9090<!-- endSnippet -->
9191
9292
@@ -101,7 +101,7 @@ For example converts lines to upper case:
101101``` cs
102102verifySettings .ScrubLinesWithReplace (line => line .ToUpper ());
103103```
104- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1365-L1369 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublineswithreplace ' title =' Start of snippet ' >anchor</a ></sup >
104+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1366-L1370 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrublineswithreplace ' title =' Start of snippet ' >anchor</a ></sup >
105105<!-- endSnippet -->
106106
107107
@@ -114,7 +114,7 @@ Replaces `Environment.MachineName` with `TheMachineName`.
114114``` cs
115115verifySettings .ScrubMachineName ();
116116```
117- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1371-L1375 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubmachinename ' title =' Start of snippet ' >anchor</a ></sup >
117+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1372-L1376 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubmachinename ' title =' Start of snippet ' >anchor</a ></sup >
118118<!-- endSnippet -->
119119
120120
@@ -127,7 +127,7 @@ Replaces `Environment.UserName` with `TheUserName`.
127127``` cs
128128verifySettings .ScrubUserName ();
129129```
130- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1377-L1381 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubusername ' title =' Start of snippet ' >anchor</a ></sup >
130+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1378-L1382 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scrubusername ' title =' Start of snippet ' >anchor</a ></sup >
131131<!-- endSnippet -->
132132
133133
0 commit comments