Skip to content

Commit 9d55d47

Browse files
committed
[dotnet] Fixing an old copy&paste for docs
[skip ci]
1 parent f8dad59 commit 9d55d47

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dotnet/src/webdriver/Safari/SafariDriverService.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -168,21 +168,21 @@ public static SafariDriverService CreateDefaultService()
168168
}
169169

170170
/// <summary>
171-
/// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable.
171+
/// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable.
172172
/// </summary>
173-
/// <param name="driverPath">The directory containing the ChromeDriver executable.</param>
174-
/// <returns>A ChromeDriverService using a random port.</returns>
173+
/// <param name="driverPath">The directory containing the SafariDriver executable.</param>
174+
/// <returns>A SafariDriverService using a random port.</returns>
175175
public static SafariDriverService CreateDefaultService(string driverPath)
176176
{
177177
return CreateDefaultService(driverPath, DefaultSafariDriverServiceExecutableName);
178178
}
179179

180180
/// <summary>
181-
/// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable with the given name.
181+
/// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable with the given name.
182182
/// </summary>
183-
/// <param name="driverPath">The directory containing the ChromeDriver executable.</param>
184-
/// <param name="driverExecutableFileName">The name of the ChromeDriver executable file.</param>
185-
/// <returns>A ChromeDriverService using a random port.</returns>
183+
/// <param name="driverPath">The directory containing the SafariDriver executable.</param>
184+
/// <param name="driverExecutableFileName">The name of the SafariDriver executable file.</param>
185+
/// <returns>A SafariDriverService using a random port.</returns>
186186
public static SafariDriverService CreateDefaultService(string driverPath, string driverExecutableFileName)
187187
{
188188
return new SafariDriverService(driverPath, driverExecutableFileName, PortUtilities.FindFreePort());

0 commit comments

Comments
 (0)