diff --git a/mkdocs_base.yml b/mkdocs_base.yml
index 59258f723e..3df1cb1603 100644
--- a/mkdocs_base.yml
+++ b/mkdocs_base.yml
@@ -78,6 +78,7 @@ nav:
- Cron: cron.md
- Drush configuration: using-drush-configuration.md
- Drupal configuration: config-exporting.md
+ - Drupal dependencies: drupal-dependencies.md
- Site aliases: site-aliases.md
- Output Formats, Fields & Filters: output-formats-filters.md
- Migrate: migrate.md
diff --git a/src/Commands/sql/SqlCommands.php b/src/Commands/sql/SqlCommands.php
index f3d91f5356..6fac0045c6 100644
--- a/src/Commands/sql/SqlCommands.php
+++ b/src/Commands/sql/SqlCommands.php
@@ -204,7 +204,7 @@ public function query($query = '', $options = ['result-file' => null, 'file' =>
#[CLI\Option(name: 'extra', description: 'Add custom arguments/options when connecting to database (used internally to list tables).')]
#[CLI\Option(name: 'extra-dump', description: 'Add custom arguments/options to the dumping of the database (e.g. mysqldump command).')]
#[CLI\Usage(name: 'drush sql:dump --result-file=../18.sql', description: 'Save SQL dump to the directory above Drupal root.')]
- #[CLI\Usage(name: 'drush sql:dump --skip-tables-key=common', description: 'Skip standard tables. See [Drush configuration](../../using-drush-configuration)')]
+ #[CLI\Usage(name: 'drush sql:dump --skip-tables-key=common', description: 'Skip standard tables. See [Drush configuration](../../using-drush-configuration.md)')]
#[CLI\Usage(name: 'drush sql:dump --extra-dump=--no-data', description: 'Pass extra option to mysqldump command.')]
#[CLI\FieldLabels(labels: ['path' => 'Path'])]
public function dump($options = ['result-file' => self::REQ, 'create-db' => false, 'data-only' => false, 'ordered-dump' => false, 'gzip' => false, 'extra' => self::REQ, 'extra-dump' => self::REQ, 'format' => 'null']): PropertyList