Skip to content

Commit

Permalink
[dotnet] Fix compilation warning for inline docs of DownloadFile method
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Jan 18, 2024
1 parent 1d9b28e commit d0f8811
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dotnet/src/webdriver/Remote/RemoteWebDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,8 @@ public IReadOnlyList<string> GetDownloadableFiles()
/// <summary>
/// Downloads a file with the specified file name.
/// </summary>
/// <param name="fileName">the name of the file to be downloaded</param>
/// <param name="fileName">The name of the file to be downloaded.</param>
/// <param name="targetDirectory">The target directory where the file should be downloaded to.</param>
public void DownloadFile(string fileName, string targetDirectory)
{
var enableDownloads = this.Capabilities.GetCapability(CapabilityType.EnableDownloads);
Expand Down

0 comments on commit d0f8811

Please sign in to comment.