You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2016/07/01 13:36:53 UTC

[3/3] mesos git commit: Corrected a typo in architecture.md.

Corrected a typo in architecture.md.

This closes #78


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

Branch: refs/heads/master
Commit: 9e5deeff4e3fc050513eb3f6e850d902479b0e03
Parents: 2680c87
Author: Myyk Seok <my...@gmail.com>
Authored: Fri Jul 1 15:33:34 2016 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Fri Jul 1 15:35:32 2016 +0200

----------------------------------------------------------------------
 docs/architecture.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9e5deeff/docs/architecture.md
----------------------------------------------------------------------
diff --git a/docs/architecture.md b/docs/architecture.md
index 3b860e4..2ec957e 100644
--- a/docs/architecture.md
+++ b/docs/architecture.md
@@ -15,7 +15,7 @@ of &lt;agent ID, resource1: amount1, resource2: amount2, ...&gt; (NOTE: as
 keyword 'slave' is deprecated in favor of 'agent', driver-based frameworks will
 still receive offers with slave ID, whereas frameworks using the v1 HTTP API receive offers with agent ID). The master decides *how many* resources to offer to each framework according to a given organizational policy, such as fair sharing or strict priority. To support a diverse set of policies, the master employs a modular architecture that makes it easy to add new allocation modules via a plugin mechanism.
 
-A framework running on top of Mesos consists of two components: a *scheduler* that registers with the master to be offered resources, and an *executor* process that is launched on agent nodes to run the framework's tasks (see the [App/Framework development guide](app-framework-development-guide.md) for more details about framework schedulers and executors). While the master determines **how many** resources are offered to each framework, the frameworks' schedulers select **which** of the offered resources to use. When a frameworks accepts offered resources, it passes to Mesos a description of the tasks it wants to run on them. In turn, Mesos launches the tasks on the corresponding agents.
+A framework running on top of Mesos consists of two components: a *scheduler* that registers with the master to be offered resources, and an *executor* process that is launched on agent nodes to run the framework's tasks (see the [App/Framework development guide](app-framework-development-guide.md) for more details about framework schedulers and executors). While the master determines **how many** resources are offered to each framework, the frameworks' schedulers select **which** of the offered resources to use. When a framework accepts offered resources, it passes to Mesos a description of the tasks it wants to run on them. In turn, Mesos launches the tasks on the corresponding agents.
 
 ## Example of resource offer