Skip to content

Commit 8ff8e26

Browse files
Apply suggestions from code review
Co-authored-by: Jackline Omondi <[email protected]>
1 parent c866767 commit 8ff8e26

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

microsoftgraph/docs-conceptual/find-mg-graph-permission.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ reviewer: maisarissi
1414

1515
# Use Find-MgGraphPermission
1616

17-
The Microsoft Graph PowerShell SDK requires users to understand both the semantics and syntax of Microsoft Graph API permissions. The `Find-MgGraphPermission` cmdlet helps answer the following questions:
17+
The Microsoft Graph PowerShell SDK requires users to understand both the semantics and syntax of Microsoft Graph API permissions. The `Find-MgGraphPermission` cmdlet addresses the following questions:
1818

1919
- How do I find the values to supply to the permission-related parameters of commands like `New-MgApplication` and other application and consent related commands?
2020
- What permissions are applicable to a certain ___domain? For example, application.
2121

2222
To use Microsoft Graph PowerShell to access Microsoft Graph, users must sign in to Microsoft Graph using the `Connect-MgGraph` cmdlet. Use the [Find-MgGraphCommand](find-mg-graph-command.md) to find which permissions to use for a specific cmdlet or API.
2323

24-
Currently, PowerShell commands and scripts cannot validate user input that refers to permissions. They also do not provide an *auto-complete* experience to help users supply input accurately. This also affects commands or scripts implemented with the Microsoft Graph PowerShell SDK itself.
24+
Currently, PowerShell commands and scripts can't validate user input that refers to permissions. They also don't provide an *auto-complete* experience to help users supply input accurately. This also affects commands or scripts implemented with the Microsoft Graph PowerShell SDK itself.
2525

2626
## Find permissions related to a given ___domain
2727

microsoftgraph/docs-conceptual/get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ After signing in, you can begin making calls to Microsoft Graph.
8484

8585
### Get a user
8686

87-
In this section, you will identify a user in the list returned by `Get-MgUser` and store their information in the `$user` variable, which will be used as a parameter in subsequent commands. Start by running the following command.
87+
In this section, you identify a user in the list returned by `Get-MgUser` and store their information in the `$user` variable, which is used as a parameter in subsequent commands. Start by running the following command.
8888

8989
```powershell
9090
Get-MgUser
@@ -159,7 +159,7 @@ New-MgTeamChannelMessage -TeamId $team.Id -ChannelId $channel.Id -Body @{ Conten
159159

160160
### Sign out
161161

162-
Use the `Disconnect-MgGraph` command to sign out. This ends your current session and revokes the authentication token for the active PowerShell session, ensuring your credentials are no longer available until you sign in again.
162+
Use the `Disconnect-MgGraph` command to sign out. This command ends your current session and revokes the authentication token for the active PowerShell session, ensuring your credentials are no longer available until you sign in again.
163163

164164
```powershell
165165
Disconnect-MgGraph

0 commit comments

Comments
 (0)