Skip to content

Commit

Permalink
Update IDialogService.cs
Browse files Browse the repository at this point in the history
Fixing Typos
  • Loading branch information
noufionline committed May 22, 2019
1 parent ff9641a commit 7c0e303
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Wpf/Prism.Wpf/Services/Dialogs/IDialogService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ public interface IDialogService
/// </summary>
/// <param name="name">The name of the dialog to show</param>
/// <param name="parameters">The parameters to pass to the dialog</param>
/// <param name="callback">The actin to perform when the dialog is closed.</param>
/// <param name="callback">The action to perform when the dialog is closed.</param>
void Show(string name, IDialogParameters parameters, Action<IDialogResult> callback);

/// <summary>
/// Shows a modal dialog
/// </summary>
/// <param name="name">The name of the dialog to show</param>
/// <param name="parameters">The parameters to pass to the dialog</param>
/// <param name="callback">The actin to perform when the dialog is closed.</param>
/// <param name="callback">The action to perform when the dialog is closed.</param>
void ShowDialog(string name, IDialogParameters parameters, Action<IDialogResult> callback);
}
}
}

0 comments on commit 7c0e303

Please sign in to comment.