Skip to content

Commit

Permalink
Merge pull request #482 from llifon/master
Browse files Browse the repository at this point in the history
[Documentation] Fixed spelling of 'Inidicates' with 'Indicates'
  • Loading branch information
nigel-sampson authored Oct 11, 2017
2 parents 544babd + 58a4e9e commit e46151d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Caliburn.Micro/Conductor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected override void OnActivate() {
/// <summary>
/// Called when deactivating.
/// </summary>
/// <param name="close">Inidicates whether this instance will be closed.</param>
/// <param name="close">Indicates whether this instance will be closed.</param>
protected override void OnDeactivate(bool close) {
ScreenExtensions.TryDeactivate(ActiveItem, close);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Caliburn.Micro/ConductorWithCollectionAllActive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected override void OnActivate() {
/// <summary>
/// Called when deactivating.
/// </summary>
/// <param name="close">Inidicates whether this instance will be closed.</param>
/// <param name="close">Indicates whether this instance will be closed.</param>
protected override void OnDeactivate(bool close) {
items.OfType<IDeactivate>().Apply(x => x.Deactivate(close));
if (close) {
Expand Down
2 changes: 1 addition & 1 deletion src/Caliburn.Micro/ConductorWithCollectionOneActive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ protected override void OnActivate() {
/// <summary>
/// Called when deactivating.
/// </summary>
/// <param name="close">Inidicates whether this instance will be closed.</param>
/// <param name="close">Indicates whether this instance will be closed.</param>
protected override void OnDeactivate(bool close) {
if (close) {
items.OfType<IDeactivate>().Apply(x => x.Deactivate(true));
Expand Down
2 changes: 1 addition & 1 deletion src/Caliburn.Micro/Screen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void IDeactivate.Deactivate(bool close) {
/// <summary>
/// Called when deactivating.
/// </summary>
/// <param name = "close">Inidicates whether this instance will be closed.</param>
/// <param name = "close">Indicates whether this instance will be closed.</param>
protected virtual void OnDeactivate(bool close) {}

/// <summary>
Expand Down

0 comments on commit e46151d

Please sign in to comment.