You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-15 01:04:37 +02:00
Fix comment typos and formatting.
This commit is contained in:
@ -57,12 +57,12 @@ FN_EXTERN uint64_t jsonReadUInt64(JsonRead *this);
|
||||
// Read key
|
||||
FN_EXTERN String *jsonReadKey(JsonRead *this);
|
||||
|
||||
// Read an expected key
|
||||
// Read expected key
|
||||
FN_EXTERN bool jsonReadKeyExpect(JsonRead *this, const String *key);
|
||||
FN_EXTERN bool jsonReadKeyExpectStrId(JsonRead *this, StringId key);
|
||||
FN_EXTERN bool jsonReadKeyExpectZ(JsonRead *this, const char *key);
|
||||
|
||||
// Read an required key
|
||||
// Read required key
|
||||
FN_EXTERN JsonRead *jsonReadKeyRequire(JsonRead *this, const String *key);
|
||||
FN_EXTERN JsonRead *jsonReadKeyRequireStrId(JsonRead *this, StringId key);
|
||||
FN_EXTERN JsonRead *jsonReadKeyRequireZ(JsonRead *this, const char *key);
|
||||
|
@ -158,7 +158,7 @@ cmdTest(
|
||||
}
|
||||
CATCH_ANY()
|
||||
{
|
||||
// If this is the first build failure then clean the build path a retry
|
||||
// If this is the first build failure then clean the build path and retry
|
||||
if (buildRetry == false)
|
||||
{
|
||||
buildRetry = true;
|
||||
|
Reference in New Issue
Block a user