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 2015/12/17 06:22:39 UTC

[3/4] mesos git commit: Reworded NOTE in Examples for Getting Started doc.

Reworded NOTE in Examples for Getting Started doc.

The previous wording was a bit confusing. The new text makes it clear
that the test-framework binaries have been generated by a call to
`make check` as described in the 'Building Mesos' section.

Also, I changed the text from being a footnote to being actual text
inline with the rest of the text in this section. The note is relevant
enough to the text above it to warrant such a change.

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


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

Branch: refs/heads/master
Commit: 21eff274db7213af6b5e65fb0329bb711b675b88
Parents: 6efad86
Author: Kevin Klues <kl...@gmail.com>
Authored: Thu Dec 17 06:21:24 2015 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Thu Dec 17 06:21:24 2015 +0100

----------------------------------------------------------------------
 docs/getting-started.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/21eff274/docs/getting-started.md
----------------------------------------------------------------------
diff --git a/docs/getting-started.md b/docs/getting-started.md
index da7b46c..08dbf26 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -167,6 +167,8 @@ In order to speed up the build and reduce verbosity of the logs, you can append
 ## Examples
 
 Mesos comes bundled with example frameworks written in C++, Java and Python.
+The framework binaries will only be available after running `make check`, as
+described in the ***Building Mesos*** section above.
 
     # Change into build directory.
     $ cd build
@@ -188,5 +190,3 @@ Mesos comes bundled with example frameworks written in C++, Java and Python.
 
     # Run Python framework (Exits after successfully running some tasks.).
     $ ./src/examples/python/test-framework 127.0.0.1:5050
-
-*NOTE: To build the example frameworks, make sure you build the test suite by doing `make check`.*