You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2016/01/25 17:46:10 UTC

mesos git commit: Fixed a typo in the comments of parseImageReference().

Repository: mesos
Updated Branches:
  refs/heads/master f0f4c3440 -> f8ab6d091


Fixed a typo in the comments of parseImageReference().

Review: https://reviews.apache.org/r/42481/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/f8ab6d09
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/f8ab6d09
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/f8ab6d09

Branch: refs/heads/master
Commit: f8ab6d091688a74485ff103225e01ba03103243b
Parents: f0f4c34
Author: Qian Zhang <zh...@cn.ibm.com>
Authored: Mon Jan 25 08:45:59 2016 -0800
Committer: Jie Yu <yu...@gmail.com>
Committed: Mon Jan 25 08:45:59 2016 -0800

----------------------------------------------------------------------
 include/mesos/docker/spec.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f8ab6d09/include/mesos/docker/spec.hpp
----------------------------------------------------------------------
diff --git a/include/mesos/docker/spec.hpp b/include/mesos/docker/spec.hpp
index b42f422..6033e82 100644
--- a/include/mesos/docker/spec.hpp
+++ b/include/mesos/docker/spec.hpp
@@ -41,7 +41,7 @@ namespace spec {
  * This format is inherently ambiguous when dealing with repository
  * names that include forward slashes. To disambiguate, the docker
  * code looks for '.', or ':', or 'localhost' to decide if the first
- * component is a registry or a respository name. For more detail,
+ * component is a registry or a repository name. For more detail,
  * drill into the implementation of docker pull.
  *
  * See docker implementation: