diff --git a/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php b/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
index d9035f7dfeac9f59ee9eba0796ef58d43a7b17bb..c1c68cb58a6dc261e7ee58db642d84d5444a4ed5 100644
--- a/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
+++ b/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
@@ -18,7 +18,7 @@ interface ChmodInterface {
    * @param string $path
    *   Path to change permissions of.
    * @param int $mode
-   *   See the $mode argument from http://php.net/chmod.
+   *   The new file permission mode to be passed to chmod().
    * @param bool $recursive
    *   Pass TRUE to recursively chmod the entire directory specified in $path.
    *
diff --git a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
index 78d69d08dc9c4c31f674fa9b400f34368fd5e0b5..337b0b3e65a016870ef836c5303c62943de69ea4 100644
--- a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
+++ b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
@@ -136,7 +136,7 @@ public final function copyDirectory($source, $destination) {
    * @param string $path
    *   The file / directory to change the permissions of.
    * @param int $mode
-   *   See the $mode argument from http://php.net/chmod.
+   *   The new file permission mode to be passed to chmod().
    * @param bool $recursive
    *   Pass TRUE to recursively chmod the entire directory specified in $path.
    *