1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00

Fix typos.

This commit is contained in:
Adrian Vondendriesch 2020-03-28 17:48:57 -04:00 committed by David Steele
parent af734d69f4
commit e1c72f6f97
5 changed files with 11 additions and 11 deletions

View File

@ -939,7 +939,7 @@
<option id="dry-run" name="Dry Run">
<summary>Execute a dry-run for the command.</summary>
<text>The <br-option>{[dash]}-dry-run</br-option> option is a command-line only option and can be passed when it is desireable to determine what modifications will be made by the command without the command actually making any modifications.</text>
<text>The <br-option>{[dash]}-dry-run</br-option> option is a command-line only option and can be passed when it is desirable to determine what modifications will be made by the command without the command actually making any modifications.</text>
<example>y</example>
</option>

View File

@ -188,7 +188,7 @@ getEpoch(const String *targetTime)
LOG_WARN_FMT(
"automatic backup set selection cannot be performed with provided time '%s', latest backup set will be used"
"\nHINT: time format must be YYYY-MM-DD HH:MM:SS with optional msec and optional timezone (+/- HH or HHMM or HH:MM)"
" - if timezone is ommitted, local time is assumed (for UTC use +00)",
" - if timezone is omitted, local time is assumed (for UTC use +00)",
strPtr(targetTime));
}
}

View File

@ -1124,7 +1124,7 @@ static ConfigDefineOptionData configDefineOptionData[] = CFGDEFDATA_OPTION_LIST
CFGDEFDATA_OPTION_HELP_SUMMARY("Execute a dry-run for the command.")
CFGDEFDATA_OPTION_HELP_DESCRIPTION
(
"The --dry-run option is a command-line only option and can be passed when it is desireable to determine what "
"The --dry-run option is a command-line only option and can be passed when it is desirable to determine what "
"modifications will be made by the command without the command actually making any modifications."
)

View File

@ -15,14 +15,14 @@ typedef struct HarnessStorageInfoListCallbackData
const String *path; // subpath when storage is specified
String *content; // String where content should be added
bool modeOmit; // Should the specified mode be ommitted?
bool modeOmit; // Should the specified mode be omitted?
mode_t modeFile; // File to omit if modeOmit is true
mode_t modePath; // Path mode to omit if modeOmit is true
bool timestampOmit; // Should the timestamp be ommitted?
bool userOmit; // Should the current user be ommitted?
bool groupOmit; // Should the current group be ommitted?
bool sizeOmit; // Should the size be ommitted
bool rootPathOmit; // Should the root path be ommitted?
bool timestampOmit; // Should the timestamp be omitted?
bool userOmit; // Should the current user be omitted?
bool groupOmit; // Should the current group be omitted?
bool sizeOmit; // Should the size be omitted
bool rootPathOmit; // Should the root path be omitted?
bool fileCompressed; // Files will be decompressed to get size
} HarnessStorageInfoListCallbackData;

View File

@ -479,7 +479,7 @@ testRun(void)
"P00 WARN: automatic backup set selection cannot be performed with provided time 'Tue, 15 Nov 1994 12:45:26',"
" latest backup set will be used\n"
" HINT: time format must be YYYY-MM-DD HH:MM:SS with optional msec and optional timezone"
" (+/- HH or HHMM or HH:MM) - if timezone is ommitted, local time is assumed (for UTC use +00)");
" (+/- HH or HHMM or HH:MM) - if timezone is omitted, local time is assumed (for UTC use +00)");
setenv("TZ", "UTC", true);
}
@ -563,7 +563,7 @@ testRun(void)
"P00 WARN: automatic backup set selection cannot be performed with provided time 'Tue, 15 Nov 1994 12:45:26',"
" latest backup set will be used\n"
" HINT: time format must be YYYY-MM-DD HH:MM:SS with optional msec and optional timezone"
" (+/- HH or HHMM or HH:MM) - if timezone is ommitted, local time is assumed (for UTC use +00)");
" (+/- HH or HHMM or HH:MM) - if timezone is omitted, local time is assumed (for UTC use +00)");
}
// *****************************************************************************************************************************