Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ protected virtual void PostOperationDeleteEvent(OperationEventArgs args)
/// The CimSession object managed by this proxy object,
/// which is either created by constructor OR passed in by caller.
/// The session will be closed while disposing this proxy object
/// if it is created by constuctor.
/// if it is created by constructor.
/// </summary>
internal CimSession CimSession { get; private set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void WriteObject(object sendToPipeline)

/// <summary>
/// Default implementation of the enumerated WriteObject. Either way, the
/// objects are added to the list passed to this object in the constuctor.
/// objects are added to the list passed to this object in the constructor.
/// </summary>
/// <param name="sendToPipeline">Object to write.</param>
/// <param name="enumerateCollection">If true, the collection is enumerated, otherwise
Expand Down
4 changes: 2 additions & 2 deletions src/System.Management.Automation/engine/parser/tokenizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public DynamicKeyword Copy()
public bool HasReservedProperties { get; set; }

/// <summary>
/// A list of the properties allowed for this constuctor.
/// A list of the properties allowed for this constructor.
/// </summary>
public Dictionary<string, DynamicKeywordProperty> Properties
{
Expand All @@ -327,7 +327,7 @@ public Dictionary<string, DynamicKeywordProperty> Properties
private Dictionary<string, DynamicKeywordProperty> _properties;

/// <summary>
/// A list of the parameters allowed for this constuctor.
/// A list of the parameters allowed for this constructor.
/// </summary>
public Dictionary<string, DynamicKeywordParameter> Parameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public PSRemotingDataStructureException()
}

/// <summary>
/// This constuctor takes a localized string as the error message.
/// This constructor takes a localized string as the error message.
/// </summary>
/// <param name="message">
/// A localized string as an error message.
Expand All @@ -309,7 +309,7 @@ public PSRemotingDataStructureException(string message)
}

/// <summary>
/// This constuctor takes a localized string as the error message, and an inner exception.
/// This constructor takes a localized string as the error message, and an inner exception.
/// </summary>
/// <param name="message">
/// A localized string as an error message.
Expand Down Expand Up @@ -339,7 +339,7 @@ internal PSRemotingDataStructureException(string resourceString, params object[]
}

/// <summary>
/// This constuctor takes an inner exception and an error id.
/// This constructor takes an inner exception and an error id.
/// </summary>
/// <param name="innerException">
/// Inner exception.
Expand Down Expand Up @@ -445,7 +445,7 @@ internal PSRemotingTransportException(PSRemotingErrorId errorId, string resource
}

/// <summary>
/// This constuctor takes an inner exception and an error id.
/// This constructor takes an inner exception and an error id.
/// </summary>
/// <param name="innerException">
/// Inner exception.
Expand Down Expand Up @@ -588,7 +588,7 @@ public PSRemotingTransportRedirectException(string message, Exception innerExcep
}

/// <summary>
/// This constuctor takes an inner exception and an error id.
/// This constructor takes an inner exception and an error id.
/// </summary>
/// <param name="innerException">
/// Inner exception.
Expand Down Expand Up @@ -685,7 +685,7 @@ public class PSDirectException : RuntimeException
#region Constructor

/// <summary>
/// This constuctor takes a localized string as the error message.
/// This constructor takes a localized string as the error message.
/// </summary>
/// <param name="message">
/// A localized string as an error message.
Expand Down
2 changes: 1 addition & 1 deletion test/powershell/engine/Basic/ValidateAttributes.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Describe 'Validate Attributes Tests' -Tags 'CI' {
}
}

Context "ValidateRange - ParameterConstuctors" {
Context "ValidateRange - ParameterConstructors" {
BeforeAll {
$testCases = @(
@{
Expand Down