@@ -5,7 +5,7 @@ public partial class VerifyBase
55#if NETSTANDARD2_1 || NETCOREAPP3_0_OR_GREATER || NET5_0_OR_GREATER
66
77 /// <summary>
8- /// Verifies the contents of <param name="path"/>.
8+ /// Verifies the contents of <paramref name="path"/>.
99 /// </summary>
1010 public SettingsTask VerifyDirectory (
1111 string path ,
@@ -19,7 +19,7 @@ public SettingsTask VerifyDirectory(
1919 Verify ( settings , sourceFile , _ => _ . VerifyDirectory ( path , include , pattern , options , info , fileScrubber ) , true ) ;
2020
2121 /// <summary>
22- /// Verifies the contents of <param name="path"/>.
22+ /// Verifies the contents of <paramref name="path"/>.
2323 /// Differs from passing <see cref="DirectoryInfo"/> to <code>Verify(object? target)</code> which will verify the full path.
2424 /// </summary>
2525 public SettingsTask VerifyDirectory (
@@ -35,7 +35,7 @@ public SettingsTask VerifyDirectory(
3535#else
3636
3737 /// <summary>
38- /// Verifies the contents of <param name="path"/>.
38+ /// Verifies the contents of <paramref name="path"/>.
3939 /// </summary>
4040 public SettingsTask VerifyDirectory (
4141 string path ,
@@ -49,7 +49,7 @@ public SettingsTask VerifyDirectory(
4949 Verify ( settings , sourceFile , _ => _ . VerifyDirectory ( path , include , pattern , option , info , fileScrubber ) , true ) ;
5050
5151 /// <summary>
52- /// Verifies the contents of <param name="path"/>.
52+ /// Verifies the contents of <paramref name="path"/>.
5353 /// Differs from passing <see cref="DirectoryInfo"/> to <code>Verify(object? target)</code> which will verify the full path.
5454 /// </summary>
5555 public SettingsTask VerifyDirectory (
0 commit comments