Skip to content

Commit 726b4ef

Browse files
authored
fix missing = in readme code (#171)
#169
1 parent 00825a8 commit 726b4ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Creating a new session will create a script scoped variable `$ServiceNowSession`
2828

2929
Basic authentication with just a credential...
3030
```PowerShell
31-
$params @{
31+
$params = @{
3232
Url = 'instance.service-now.com'
3333
Credential = $userCred
3434
}
@@ -37,7 +37,7 @@ New-ServiceNowSession @params
3737

3838
Oauth authentication with user credential as well as application/client credential. The application/client credential can be found in the System OAuth->Application Registry section of ServiceNow.
3939
```PowerShell
40-
$params @{
40+
$params = @{
4141
Url = 'instance.service-now.com'
4242
Credential = $userCred
4343
ClientCredential = $clientCred

0 commit comments

Comments
 (0)