From fd6c66d4483076cdc1f5a9fd1bcdea8743a14e39 Mon Sep 17 00:00:00 2001 From: sethvs Date: Mon, 3 Sep 2018 14:09:04 +0300 Subject: [PATCH] Fix a typo in Credential.cs. --- src/System.Management.Automation/engine/Credential.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.Management.Automation/engine/Credential.cs b/src/System.Management.Automation/engine/Credential.cs index bf04deb4397..84e94a694be 100644 --- a/src/System.Management.Automation/engine/Credential.cs +++ b/src/System.Management.Automation/engine/Credential.cs @@ -75,9 +75,9 @@ public enum PSCredentialUIOptions /// /// Declare a delegate which returns the encryption key and initialization vector for symmetric encryption algorithm. /// - /// The streaming context, which contains the searilization context. + /// The streaming context, which contains the serialization context. /// Symmetric encryption key. - /// symmetric encryption initialization vector. + /// Symmetric encryption initialization vector. /// public delegate bool GetSymmetricEncryptionKey(StreamingContext context, out byte[] key, out byte[] iv);