You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by an...@apache.org on 2016/08/10 21:58:49 UTC

mesos git commit: Fixed minor typo in comment.

Repository: mesos
Updated Branches:
  refs/heads/master 5bfa2476a -> 12712c59b


Fixed minor typo in comment.


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

Branch: refs/heads/master
Commit: 12712c59b5538d617f4edcb86706600d5045a792
Parents: 5bfa247
Author: Anand Mazumdar <an...@apache.org>
Authored: Wed Aug 10 14:57:24 2016 -0700
Committer: Anand Mazumdar <an...@apache.org>
Committed: Wed Aug 10 14:58:15 2016 -0700

----------------------------------------------------------------------
 src/internal/devolve.cpp | 2 +-
 src/internal/evolve.cpp  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/12712c59/src/internal/devolve.cpp
----------------------------------------------------------------------
diff --git a/src/internal/devolve.cpp b/src/internal/devolve.cpp
index 4597325..efcc5d6 100644
--- a/src/internal/devolve.cpp
+++ b/src/internal/devolve.cpp
@@ -38,7 +38,7 @@ static T devolve(const google::protobuf::Message& message)
     << " while devolving to " << t.GetTypeName();
 
   // NOTE: We need to use 'ParsePartialFromString' instead of
-  // 'ParsePartialFromString' because some required fields might not
+  // 'ParseFromString' because some required fields might not
   // be set and we don't want an exception to get thrown.
   CHECK(t.ParsePartialFromString(data))
     << "Failed to parse " << t.GetTypeName()

http://git-wip-us.apache.org/repos/asf/mesos/blob/12712c59/src/internal/evolve.cpp
----------------------------------------------------------------------
diff --git a/src/internal/evolve.cpp b/src/internal/evolve.cpp
index 0f20459..9ae720c 100644
--- a/src/internal/evolve.cpp
+++ b/src/internal/evolve.cpp
@@ -56,7 +56,7 @@ static T evolve(const google::protobuf::Message& message)
     << " while evolving to " << t.GetTypeName();
 
   // NOTE: We need to use 'ParsePartialFromString' instead of
-  // 'ParsePartialFromString' because some required fields might not
+  // 'ParseFromString' because some required fields might not
   // be set and we don't want an exception to get thrown.
   CHECK(t.ParsePartialFromString(data))
     << "Failed to parse " << t.GetTypeName()