diff --git a/README.md b/README.md index 4e297c0..757261d 100644 --- a/README.md +++ b/README.md @@ -1631,7 +1631,7 @@ import os, shutil ```python os.chdir() # Changes current working directory. -os.mkdir(, mode=0o777) # Creates a directory. +os.mkdir(, mode=0o777) # Creates a directory. Mode is in octal. ``` ```python diff --git a/index.html b/index.html index 61ad9a4..863d900 100644 --- a/index.html +++ b/index.html @@ -1490,7 +1490,7 @@ value = args.<name>
os.chdir(<path>)                    # Changes current working directory.
-os.mkdir(<path>, mode=0o777)        # Creates a directory.
+os.mkdir(<path>, mode=0o777)        # Creates a directory. Mode is in octal.
 
shutil.copy(from, to)               # Copies the file.
 shutil.copytree(from, to)           # Copies the entire directory tree.