diff --git a/src/Forms/Prism.Forms/Services/PageDialogService/IPageDialogService.cs b/src/Forms/Prism.Forms/Services/PageDialogService/IPageDialogService.cs
index 8897e1161b..6ec4093171 100644
--- a/src/Forms/Prism.Forms/Services/PageDialogService/IPageDialogService.cs
+++ b/src/Forms/Prism.Forms/Services/PageDialogService/IPageDialogService.cs
@@ -11,7 +11,7 @@ public interface IPageDialogService
///
/// Determines if the dialog can be shown.
///
- /// True is you can show the dialog; False if the dialog cannot be shown
+ /// True if you can show the dialog; False if the dialog cannot be shown
bool CanShowDialog();
///
diff --git a/src/Forms/Prism.Forms/Services/PageDialogService/PageDialogService.cs b/src/Forms/Prism.Forms/Services/PageDialogService/PageDialogService.cs
index 9f587e8e0c..617c4b2654 100644
--- a/src/Forms/Prism.Forms/Services/PageDialogService/PageDialogService.cs
+++ b/src/Forms/Prism.Forms/Services/PageDialogService/PageDialogService.cs
@@ -189,7 +189,7 @@ public virtual Task DisplayPromptAsync(string title, string message, str
///
/// Determines if the dialog can be shown.
///
- /// True is you can show the dialog; False if the dialog cannot be shown
+ /// True if you can show the dialog; False if the dialog cannot be shown
public bool CanShowDialog()
{
return _applicationProvider.MainPage != null;