Added a missing space in app.h

When the user runs "--help", they see the non-existent word
"compressingnew". This is because of a missing space, which
is now added, resulting in "compressing new".
This commit is contained in:
Ville Sundell 2024-03-21 00:39:45 +02:00 committed by GitHub
parent 720f609d84
commit 546519c855
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ struct LoaderArgs : public ArgsBase<LoaderArgs> {
visitor(weights, "weights", Path(),
"Path name of model weights (.sbs) file. Only required if "
"compressed_weights file is not present and needs to be "
"regenerated. This parameter is only required for compressing"
"regenerated. This parameter is only required for compressing "
"new model weight exports, otherwise it is not needed.");
}
};