Skip to content

Commit 7465e71

Browse files
peombwaddyett
andauthored
Apply suggestions from code review
Co-authored-by: DeVere Dyett <[email protected]>
1 parent d42f492 commit 7465e71

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssem
6363
public ContextScope ContextScope { get; set; }
6464

6565
[Parameter(Mandatory = false,
66-
HelpMessage = "The name of the national cloud environment to connect to. By default, the SDK uses global cloud.")]
66+
HelpMessage = "The name of the national cloud environment to connect to. By default global cloud is used.")]
6767
[ValidateNotNullOrEmpty]
6868
[Alias("EnvironmentName", "NationalCloud")]
6969
public string Environment { get; set; }

src/Authentication/Authentication/Interfaces/IDataStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public interface IDataStore
9595
void EmptyDirectory(string dirPath);
9696

9797
/// <summary>
98-
/// Checks for existence of the given directory.
98+
/// Checks for the existence of the given directory.
9999
/// </summary>
100100
/// <param name="path">The directory path to check.</param>
101101
/// <returns>True if the directory exists, otherwise false.</returns>

src/Authentication/Authentication/Interfaces/IFileProvider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace Microsoft.Graph.PowerShell.Authentication
66
{
77
using System;
88
using System.IO;
9+
910
public interface IFileProvider : IDisposable
1011
{
1112
string FilePath { get; }

0 commit comments

Comments
 (0)