summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/configuration/action_comments.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/action_comments.md b/docs/configuration/action_comments.md
index ca1edd25..11b1a1a3 100644
--- a/docs/configuration/action_comments.md
+++ b/docs/configuration/action_comments.md
@@ -3,7 +3,7 @@
The most basic way to configure the flow of isort within a single file is action comments. These comments are picked up and interpreted by the isort parser during parsing.
-## isort: skip-file
+## isort: skip_file
Tells isort to skip the entire file.
@@ -11,7 +11,7 @@ Example:
```python
# !/bin/python3
-# isort: skip-file
+# isort: skip_file
import os
import sys