Skip to content

Commit b18c6b5

Browse files
Edits
1 parent b98b978 commit b18c6b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/storage/blobs/data-lake-storage-acl-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To take dependency on a particular version of the library, add the direct depend
103103

104104
### Include import directives
105105

106-
Then open your code file and add the necessary `import` directives. In this example, we add the following directives in the *App.java* file:
106+
Add the necessary `import` directives. In this example, we add the following directives in the *App.java* file:
107107

108108
```java
109109
import com.azure.storage.common.StorageSharedKeyCredential;

articles/storage/blobs/data-lake-storage-acl-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ You can remove one or more ACL entries. To remove ACL entries recursively, creat
146146

147147
Remove ACL entries by calling the **DataLakeDirectoryClient.remove_access_control_recursive** method. If you want to remove a **default** ACL entry, then add the string `default:` to the beginning of the ACL entry string.
148148

149-
This example removes an ACL entry from the ACL of the directory named `my-parent-directory`. This method accepts a boolean parameter named `is_default_scope` that specifies whether to remove the entry from the default ACL. if that parameter is `True`, the updated ACL entry is preceded with the string `default:`.
149+
This example removes an ACL entry from the ACL of the directory named `my-parent-directory`. This method accepts a boolean parameter named `is_default_scope` that specifies whether to remove the entry from the default ACL. If that parameter is `True`, the updated ACL entry is preceded with the string `default:`.
150150

151151
```python
152152
def remove_permission_recursively(is_default_scope):

0 commit comments

Comments
 (0)