Repository: mesos Updated Branches: refs/heads/master 4fdb1ca1b -> 6edbedd19
Fixed a typo in the comment for 'Master::updateSlave()'. Review: https://reviews.apache.org/r/37928 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6edbedd1 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/6edbedd1 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/6edbedd1 Branch: refs/heads/master Commit: 6edbedd19ad69ec96c59c6543da24c50a805abd5 Parents: 4fdb1ca Author: Qian Zhang <[email protected]> Authored: Sat Aug 29 23:17:36 2015 -0400 Committer: Michael Park <[email protected]> Committed: Sat Aug 29 23:17:37 2015 -0400 ---------------------------------------------------------------------- src/master/master.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/6edbedd1/src/master/master.cpp ---------------------------------------------------------------------- diff --git a/src/master/master.cpp b/src/master/master.cpp index 95207d2..b824f96 100644 --- a/src/master/master.cpp +++ b/src/master/master.cpp @@ -3998,7 +3998,7 @@ void Master::updateSlave( LOG(INFO) << "Received update of slave " << *slave << " with total" << " oversubscribed resources " << oversubscribedResources; - // First, rescind any oustanding offers with revocable resources. + // First, rescind any outstanding offers with revocable resources. // NOTE: Need a copy of offers because the offers are removed inside // the loop. foreach (Offer* offer, utils::copy(slave->offers)) {
