Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlydba committed Dec 15, 2024
1 parent 2f38b17 commit 7ee24c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/login_role.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if ($state -eq "absent") {
}
elseif ($state -eq "present") {
# Add user to role
if ($null -eq $existingRoleMembers) {
if ($null -eq $existingRoleMember) {
try {
$addRoleMemberSplat = @{
SqlInstance = $sqlInstance
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/login_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

RETURN = r'''
data:
description: Output from the C(Remove-DbaDbRoleMember), (Get-DbaDbRoleMember), or C(Add-DbaDbRoleMember) functions.
description: Output from the C(Remove-DbaServerRoleMember), (Get-DbaServerRoleMember), or C(Add-DbaServerRoleMember) functions.
returned: success, but not in check_mode.
type: dict
'''

0 comments on commit 7ee24c5

Please sign in to comment.