This is an automated email from the ASF dual-hosted git repository. szetszwo pushed a commit to branch RATIS-5 in repository https://gitbox.apache.org/repos/asf/ratis-hadoop-projects.git
commit 60a72b1698f4721ed19088e97254eea9bdfd3691 Author: Márton Elek <[email protected]> AuthorDate: Wed Jan 10 17:04:23 2018 +0100 RATIS-5. Clarify sentences according to the suggestions from sebb. --- content/getting_started.md | 5 +++-- layouts/index.html | 8 ++++---- layouts/partials/header.html | 4 ++-- static/doap.rdf | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/content/getting_started.md b/content/getting_started.md index df2c9d7..497f3e9 100644 --- a/content/getting_started.md +++ b/content/getting_started.md @@ -15,7 +15,7 @@ title: Getting started limitations under the License. See accompanying LICENSE file. --> -Ratis is a [Raft](https://raft.github.io/") protocol *library* in java. It's not a standalone server application like Zookeeper or Consul. +Ratis is a [Raft](https://raft.github.io/") protocol *library* in Java. It's not a standalone server application like Zookeeper or Consul. ### Examples @@ -32,7 +32,8 @@ Arithmetic example also has some simple cli script to start it: 1. First do a full build on the ratis source code: ```mvn clean install -DskipTests``` 2. Go the the bin directory of the examples: ```cd ratis-examples/src/main/bin``` -3. Start three Ratis server (with arithmetic state matchine): ```./start-all``` +3. Start three Ratis server instances (with arithmetic state matchine). ```./start-all``` (This helper script starts 3 + Java instances in the background). 4. Create a new variable in the state machine: ``` ./client.sh assign --name a --value 3``` 5. Assign a new variable: ```./client.sh assign --name b --value a+5``` 6. Get a variable from the state machine: ```./client.sh get --name b``` diff --git a/layouts/index.html b/layouts/index.html index 6f6b1a5..6d0e0af 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -38,9 +38,9 @@ <div class="row header"> <h2>What is Apache Ratis™?</h2> <p class="lead"> - Apache Ratis is a higly customizable Raft protocol implementation in Java.</p> - <p class="lead"><a href="https://raft.github.io/">Raft</a> is a easily understandable consensus algorithm to manage replicated log.</p> - <p class="lead">Apache Ratis could be used in any Java application where a state should be replicated between multiple instances.</p> + Apache Ratis is a highly customizable Raft protocol implementation in Java.</p> + <p class="lead"><a href="https://raft.github.io/">Raft</a> is a easily understandable consensus algorithm to manage replicated state.</p> + <p class="lead">Apache Ratis could be used in any Java application where state should be replicated between multiple instances.</p> </p> <p></p> </div> @@ -110,7 +110,7 @@ <div class="row header"> <h2>Download</h2> - <p>Apache Ratis is a java <b>library</b> that can be used directly from your applications.</p> + <p>Apache Ratis is a Java <b>library</b> that can be used directly from your applications.</p> <p>It is released as source code tarballs. The downloads are distributed via mirror sites and should be checked for tampering using <a href="https://www.apache.org/info/verification.html">GPG or SHA-256</a></p> diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 5749d26..24f558d 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -18,7 +18,7 @@ <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <meta name="description" content="Open source java implementation for RAFT consensus protocol."> + <meta name="description" content="Open source Java implementation for RAFT consensus protocol."> <meta name="keywords" content="raft, java, ratis, library"/> <meta name="robots" content="index,follow"/> <meta name="language" content="en"/> @@ -81,7 +81,7 @@ <div class="jumbotron"> <h1> - Open source java implementation for Raft consensus protocol. + Open source Java implementation for Raft consensus protocol. </h1> <p> <a class="btn btn-default download" role="button" href="#download">Download Apache Ratis</a> diff --git a/static/doap.rdf b/static/doap.rdf index 35e53e0..1c38252 100644 --- a/static/doap.rdf +++ b/static/doap.rdf @@ -27,7 +27,7 @@ <name>Apache Ratis</name> <homepage rdf:resource="https://ratis.apache.org" /> <asfext:pmc rdf:resource="https://ratis.apache.org" /> - <shortdesc>Apache Ratis is a Raft library in java.</shortdesc> + <shortdesc>Apache Ratis is a Raft library in Java.</shortdesc> <description>Apache Ratis is a higly customizable RAFT protocol implementation in java supporting pluggable transport, state machine and raft log.</description> <bug-database rdf:resource="https://issues.apache.org/jira/browse/RATIS" /> <mailing-list rdf:resource="htps://ratis.apache.org/#community" />
