From fb00baf9a6b82b8a7f78e0c708a8da7c2e62db0c Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:25:11 +0200 Subject: [PATCH] Fix indentation in examples --- .../backup_restore_using_commands.md | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md b/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md index b97817354c7..b4ce91724e2 100644 --- a/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md +++ b/docs/cloud/features/08_backups/backups-to-own-cloud/backup_restore_using_commands.md @@ -56,9 +56,9 @@ See the [backup command summary](/operations/backup#command-summary) for full ba ```sql BACKUP DATABASE test_backups TO S3( -'https://testchbackups.s3.amazonaws.com/', -'', -'' + 'https://testchbackups.s3.amazonaws.com/', + '', + '' ) ``` @@ -74,9 +74,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM S3( -'https://testchbackups.s3.amazonaws.com/', -'', -'' + 'https://testchbackups.s3.amazonaws.com/', + '', + '' ) ``` @@ -89,9 +89,9 @@ FROM S3( ```sql BACKUP DATABASE test_backups TO S3( -'https://storage.googleapis.com//', -'', -'' + 'https://storage.googleapis.com//', + '', + '' ) ``` @@ -107,9 +107,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM S3( -'https://storage.googleapis.com//', -'', -'' + 'https://storage.googleapis.com//', + '', + '' ) ``` @@ -122,10 +122,9 @@ FROM S3( ```sql BACKUP DATABASE test_backups TO AzureBlobStorage( -'', -'', -'/<>' -); + '', + '', + '/<>' ) ``` @@ -140,9 +139,9 @@ For example, if you are taking daily backups, you will need to use a new uuid ea ```sql RESTORE DATABASE test_backups FROM AzureBlobStorage( -'', -'', -'/' + '', + '', + '/' ) ```