From 6ce69cbde1c5edd40c85c1095fddf129f06fbf3e Mon Sep 17 00:00:00 2001 From: "Christoph Bergmeister [MVP]" Date: Mon, 1 Feb 2021 16:38:08 +0000 Subject: [PATCH] Set-AzDataLakeGen2AclRecursive.md - Fix typo (directiry -> directory) --- .../Storage.Management/help/Set-AzDataLakeGen2AclRecursive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Storage/Storage.Management/help/Set-AzDataLakeGen2AclRecursive.md b/src/Storage/Storage.Management/help/Set-AzDataLakeGen2AclRecursive.md index 7f5d4b9e03aa..0a0d035b1cd2 100644 --- a/src/Storage/Storage.Management/help/Set-AzDataLakeGen2AclRecursive.md +++ b/src/Storage/Storage.Management/help/Set-AzDataLakeGen2AclRecursive.md @@ -25,7 +25,7 @@ The input ACL will replace original ACL completely. ## EXAMPLES -### Example 1: Set ACL recursively on a directiry +### Example 1: Set ACL recursively on a directory ``` PS C:\>$acl = New-AzDataLakeGen2ItemAclObject -AccessControlType user -Permission rwx PS C:\>$acl = New-AzDataLakeGen2ItemAclObject -AccessControlType group -Permission rw- -InputObject $acl @@ -41,7 +41,7 @@ ContinuationToken : This command first creates an ACL object with 3 acl entries, then sets ACL recursively on a directory. -### Example 2: Set ACL recursively on a root directiry of filesystem +### Example 2: Set ACL recursively on a root directory of filesystem ``` PS C:\> $result = Set-AzDataLakeGen2AclRecursive -FileSystem "filesystem1" -Acl $acl -Context $ctx