diff --git a/dotnet/src/webdriver/Safari/SafariDriverService.cs b/dotnet/src/webdriver/Safari/SafariDriverService.cs index b21c0a80996d2..b788cd99d8637 100644 --- a/dotnet/src/webdriver/Safari/SafariDriverService.cs +++ b/dotnet/src/webdriver/Safari/SafariDriverService.cs @@ -168,21 +168,21 @@ public static SafariDriverService CreateDefaultService() } /// - /// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable. + /// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable. /// - /// The directory containing the ChromeDriver executable. - /// A ChromeDriverService using a random port. + /// The directory containing the SafariDriver executable. + /// A SafariDriverService using a random port. public static SafariDriverService CreateDefaultService(string driverPath) { return CreateDefaultService(driverPath, DefaultSafariDriverServiceExecutableName); } /// - /// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable with the given name. + /// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable with the given name. /// - /// The directory containing the ChromeDriver executable. - /// The name of the ChromeDriver executable file. - /// A ChromeDriverService using a random port. + /// The directory containing the SafariDriver executable. + /// The name of the SafariDriver executable file. + /// A SafariDriverService using a random port. public static SafariDriverService CreateDefaultService(string driverPath, string driverExecutableFileName) { return new SafariDriverService(driverPath, driverExecutableFileName, PortUtilities.FindFreePort());