Skip to content

Commit

Permalink
fixed typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed Oct 15, 2021
1 parent cdba4de commit 172a717
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface IPageDialogService
/// <summary>
/// Determines if the dialog can be shown.
/// </summary>
/// <returns>True is you can show the dialog; False if the dialog cannot be shown</returns>
/// <returns>True if you can show the dialog; False if the dialog cannot be shown</returns>
bool CanShowDialog();

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public virtual Task<string> DisplayPromptAsync(string title, string message, str
/// <summary>
/// Determines if the dialog can be shown.
/// </summary>
/// <returns>True is you can show the dialog; False if the dialog cannot be shown</returns>
/// <returns>True if you can show the dialog; False if the dialog cannot be shown</returns>
public bool CanShowDialog()
{
return _applicationProvider.MainPage != null;
Expand Down

0 comments on commit 172a717

Please sign in to comment.