@@ -31,15 +31,15 @@ do_delete(pgBackupRange *range)
3131elog (ERROR_ALREADY_RUNNING ,
3232"another pg_arman is running, stop delete." );
3333
34- /* Get complete list ofbackup */
34+ /* Get complete list ofbackups */
3535backup_list = catalog_get_backup_list (NULL );
3636if (!backup_list )
3737elog (ERROR_SYSTEM ,"No backup list found, can't process any more." );
3838
3939/* Find backups to be deleted */
4040for (i = 0 ;i < parray_num (backup_list );i ++ )
4141{
42- pgBackup * backup = (pgBackup * )parray_get (backup_list ,i );
42+ pgBackup * backup = (pgBackup * )parray_get (backup_list ,i );
4343
4444/* delete backup and update status to DELETED */
4545if (do_delete )
@@ -173,8 +173,7 @@ pgBackupDeleteFiles(pgBackup *backup)
173173parray * files ;
174174
175175/*
176- * If the backup was deleted already, nothing to do and such situation
177- * is not error.
176+ * If the backup was deleted already, there is nothing to do.
178177 */
179178if (backup -> status == BACKUP_STATUS_DELETED )
180179return 0 ;
@@ -184,7 +183,7 @@ pgBackupDeleteFiles(pgBackup *backup)
184183elog (INFO ,"delete: %s" ,timestamp );
185184
186185/*
187- *update STATUS to BACKUP_STATUS_DELETING in preparation for the case which
186+ *Update STATUS to BACKUP_STATUS_DELETING in preparation for the case which
188187 * the error occurs before deleting all backup files.
189188 */
190189if (!check )