Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/PowerShell/PowerShell.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2022-11-03 09:01:13 +0300
committerGitHub <noreply@github.com>2022-11-03 09:01:13 +0300
commit455d29471c062f5d1230da589ec3d37de9a4dee0 (patch)
tree36e94553dba3166e544a3e32ec90f371261e3c0a
parent52a62e9ef2329ab5642bd5c9b20088d104b1fd01 (diff)
Fix typo in InitialSessionState.cs (#18435)
controling -> controlling
-rw-r--r--src/System.Management.Automation/engine/InitialSessionState.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Management.Automation/engine/InitialSessionState.cs b/src/System.Management.Automation/engine/InitialSessionState.cs
index 751c9655e0..6d8ede14dd 100644
--- a/src/System.Management.Automation/engine/InitialSessionState.cs
+++ b/src/System.Management.Automation/engine/InitialSessionState.cs
@@ -652,7 +652,7 @@ namespace System.Management.Automation.Runspaces
public string Description { get; } = string.Empty;
/// <summary>
- /// Options controling scope visibility and setability for this entry.
+ /// Options controlling scope visibility and setability for this entry.
/// </summary>
public ScopedItemOptions Options { get; } = ScopedItemOptions.None;
}
@@ -809,7 +809,7 @@ namespace System.Management.Automation.Runspaces
internal ScriptBlock ScriptBlock { get; set; }
/// <summary>
- /// Options controling scope visibility and setability for this entry.
+ /// Options controlling scope visibility and setability for this entry.
/// </summary>
public ScopedItemOptions Options { get; } = ScopedItemOptions.None;