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

mesos git commit: Fixed assignment line wrapping in style guide example.

Repository: mesos
Updated Branches:
  refs/heads/master 7918dff39 -> 947e7ba56


Fixed assignment line wrapping in style guide example.

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


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

Branch: refs/heads/master
Commit: 947e7ba56f0955da38630aa332d58ad1f09508e4
Parents: 7918dff
Author: Benjamin Bannier <be...@mesosphere.io>
Authored: Mon Feb 29 10:10:21 2016 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Mon Feb 29 10:10:21 2016 +0100

----------------------------------------------------------------------
 docs/c++-style-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/947e7ba5/docs/c++-style-guide.md
----------------------------------------------------------------------
diff --git a/docs/c++-style-guide.md b/docs/c++-style-guide.md
index 35c870f..fdd765e 100644
--- a/docs/c++-style-guide.md
+++ b/docs/c++-style-guide.md
@@ -127,8 +127,8 @@ Try<Duration> failoverTimeout =
 
 ~~~{.cpp}
 Try<very_very_long_type> long_name =
-    ::protobuf::parse<very_very_long_type>(
-        request);
+  ::protobuf::parse<very_very_long_type>(
+      request);
 
 for (int i = 0; i < very_very_long_expression();
      i++) {