Skip to content
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

mon: Fix output text and doc #16367

Merged
merged 1 commit into from Jul 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mon/OSDMonitor.cc
Expand Up @@ -7310,7 +7310,7 @@ bool OSDMonitor::prepare_command_impl(MonOpRequestRef op,

if (!osdmap.exists(osdid)) {
err = -ENOENT;
ss << name << " does not exist. create it before updating the crush map";
ss << name << " does not exist. Create it before updating the crush map";
goto reply;
}

Expand Down
2 changes: 1 addition & 1 deletion src/mon/PaxosService.cc
Expand Up @@ -197,7 +197,7 @@ void PaxosService::propose_pending()
}

/**
* @note What we contirbute to the pending Paxos transaction is
* @note What we contribute to the pending Paxos transaction is
* obtained by calling a function that must be implemented by
* the class implementing us. I.e., the function
* encode_pending will be the one responsible to encode
Expand Down