diff options
| author | Dan Engelbrecht <[email protected]> | 2026-02-13 14:47:24 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-02-13 14:47:24 +0100 |
| commit | 58e1e1ef2deedc49b3e88db57c110b88a39e21da (patch) | |
| tree | e07def741e8cfc8e17f48cb6c0b1395e8545eecc /src | |
| parent | logging config move to zenutil (#754) (diff) | |
| download | zen-58e1e1ef2deedc49b3e88db57c110b88a39e21da.tar.xz zen-58e1e1ef2deedc49b3e88db57c110b88a39e21da.zip | |
spelling fixes (#755)
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/cmds/builds_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp index f4edb65ab..59b209384 100644 --- a/src/zen/cmds/builds_cmd.cpp +++ b/src/zen/cmds/builds_cmd.cpp @@ -3016,7 +3016,7 @@ BuildsCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) if (m_BlobHash.length() != IoHash::StringLength) { throw OptionParseException( - fmt::format("'--blob-hash' ('{}') is malfomed, it must be {} characters long", m_BlobHash, IoHash::StringLength), + fmt::format("'--blob-hash' ('{}') is malformed, it must be {} characters long", m_BlobHash, IoHash::StringLength), SubOption->help()); } @@ -3033,7 +3033,7 @@ BuildsCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) if (m_BuildId.length() != Oid::StringLength) { throw OptionParseException( - fmt::format("'--build-id' ('{}') is malfomed, it must be {} characters long", m_BuildId, Oid::StringLength), + fmt::format("'--build-id' ('{}') is malformed, it must be {} characters long", m_BuildId, Oid::StringLength), SubOption->help()); } else if (Oid BuildId = Oid::FromHexString(m_BuildId); BuildId == Oid::Zero) |