From f99915163bc1664215ce709f09defcff7298385e Mon Sep 17 00:00:00 2001 From: Johan Van de Wauw Date: Tue, 8 Mar 2022 23:36:37 +0100 Subject: [PATCH] fix typos --- sd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sd.go b/sd.go index db1b370a..4932bfb4 100644 --- a/sd.go +++ b/sd.go @@ -87,7 +87,7 @@ func SddlToSecurityDescriptor(sddl string) ([]byte, error) { func SecurityDescriptorToSddl(sd []byte) (string, error) { var sddl *uint16 - // The returned string length seems to including an aribtrary number of terminating NULs. + // The returned string length seems to include an arbitrary number of terminating NULs. // Don't use it. err := convertSecurityDescriptorToStringSecurityDescriptor(&sd[0], 1, 0xff, &sddl, nil) if err != nil {