Index: Core/Gui/src/Core.Gui/Commands/RelayCommand.cs
===================================================================
diff -u -rac11dc0cff110f04dfbbc62f42a12a3c2c2feb37 -r5656a1c68b792647f0222b72b2a80d92c96adb89
--- Core/Gui/src/Core.Gui/Commands/RelayCommand.cs (.../RelayCommand.cs) (revision ac11dc0cff110f04dfbbc62f42a12a3c2c2feb37)
+++ Core/Gui/src/Core.Gui/Commands/RelayCommand.cs (.../RelayCommand.cs) (revision 5656a1c68b792647f0222b72b2a80d92c96adb89)
@@ -49,8 +49,8 @@
/// Creates a new instance of .
///
/// The action to execute.
- /// The function that determines whether command can execute.
- /// Thrown when is null .
+ /// The function that determines whether the command can execute.
+ /// Thrown when any parameter is null .
public RelayCommand(Action action, Func canExecute)
{
if (action == null)
Index: Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs
===================================================================
diff -u -rabdbd8693fa86216902285daf0c313e89fb43e4a -r5656a1c68b792647f0222b72b2a80d92c96adb89
--- Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs (.../RoutedCommandHandler.cs) (revision abdbd8693fa86216902285daf0c313e89fb43e4a)
+++ Core/Gui/src/Core.Gui/Commands/RoutedCommandHandler.cs (.../RoutedCommandHandler.cs) (revision 5656a1c68b792647f0222b72b2a80d92c96adb89)
@@ -58,11 +58,11 @@
}
///
- /// Registers this handler to respond to the registered RoutedCommand for the
+ /// Registers this handler to respond to the registered for the
/// given element.
///
/// The element for which we should register the command
- /// binding for the current routed command.
+ /// binding for the current routed command.
internal void Register(FrameworkElement owner)
{
var binding = new CommandBinding(RoutedCommand, HandleExecute, HandleCanExecute);
@@ -73,7 +73,7 @@
/// Executes with the
/// from .
///
- /// The owner of the routed command.
+ /// The owner of the .
/// The event arguments given by the routed event.
private void HandleCanExecute(object sender, CanExecuteRoutedEventArgs e)
{
Index: Core/Gui/src/Core.Gui/Commands/RoutedCommandHandlers.cs
===================================================================
diff -u -rb441bd9ffa8a255a522abceffd49201e96808502 -r5656a1c68b792647f0222b72b2a80d92c96adb89
--- Core/Gui/src/Core.Gui/Commands/RoutedCommandHandlers.cs (.../RoutedCommandHandlers.cs) (revision b441bd9ffa8a255a522abceffd49201e96808502)
+++ Core/Gui/src/Core.Gui/Commands/RoutedCommandHandlers.cs (.../RoutedCommandHandlers.cs) (revision 5656a1c68b792647f0222b72b2a80d92c96adb89)
@@ -26,8 +26,8 @@
namespace Core.Gui.Commands
{
///
- /// Holds a collection of that should be
- /// turned into CommandBindings.
+ /// Holds a collection of that should be
+ /// turned into command bindings.
///
public class RoutedCommandHandlers : FreezableCollection
{
@@ -42,7 +42,7 @@
///
/// Creates a new instance of .
///
- /// The element for which this collection is created.
+ /// The element for which this collection is created.
private RoutedCommandHandlers(FrameworkElement owner)
{
this.owner = owner;
@@ -51,8 +51,8 @@
}
///
- /// Gets the collection of RoutedCommandHandler for a given element, creating
- /// it if it doesn't already exist.
+ /// Gets the collection of for a given element, creating
+ /// it if it doesn't already exist.
///
/// The element to which
/// was added.