Skip to content

Fix various typos #141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guide/cli/repo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ directory

.. option:: --name <name>

:required: Specify the name of the new repostiory. This can be any free-form
:required: Specify the name of the new repository. This can be any free-form
string. It is recommended to use the domain name (and possible URL path)
at which the repository is intended to be accessed. This string is not
usually seen in the |bpt| user interface.
Expand Down Expand Up @@ -101,7 +101,7 @@ files into a repository at the given directory.
``bpt repo remove``
*******************

``bpt repo remove <repo-dir>`` will remove packages from a repostiory.
``bpt repo remove <repo-dir>`` will remove packages from a repository.

.. program:: bpt repo remove

Expand Down
2 changes: 1 addition & 1 deletion src/bpt/cli/cmd/repo_cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int repo_cmd(const options& opts) {
bpt_leaf_catch(bpt::crs::e_repo_open_path repo_path, e_migration_error error) {
bpt_log(
error,
"Error while applying database migrations when opening SQLite database for repostiory [.br.yellow[{}]]: .br.red[{}]"_styled,
"Error while applying database migrations when opening SQLite database for repository [.br.yellow[{}]]: .br.red[{}]"_styled,
repo_path.value.string(),
error.value);
write_error_marker("repo-db-invalid");
Expand Down
2 changes: 1 addition & 1 deletion src/bpt/cli/cmd/repo_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int repo_init(const options& opts) {
return bpt_leaf_try { return _repo_init(opts); }
bpt_leaf_catch(bpt::crs::e_repo_already_init, bpt::crs::e_repo_open_path dirpath) {
bpt_log(error,
"Failed to initialize a new repostiory at [{}]: Repository already exists",
"Failed to initialize a new repository at [{}]: Repository already exists",
dirpath.value.string());
write_error_marker("repo-init-already-init");
return 1;
Expand Down