@@ -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#L1213-L1217 ' 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#L1215-L1219 ' 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#L1219-L1223 ' 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#L1221-L1225 ' 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#L1225-L1229 ' 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#L1227-L1231 ' 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#L1231-L1235 ' 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#L1233-L1237 ' 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#L1237-L1241 ' 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#L1239-L1243 ' 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#L1243-L1247 ' 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#L1245-L1249 ' 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