[Groonga-commit] droonga/droonga.org at 71b8608 [gh-pages] Fix typos

Back to archive index

Yoji Shidara null+****@clear*****
Mon Mar 3 12:34:10 JST 2014


Yoji Shidara	2014-03-03 12:34:10 +0900 (Mon, 03 Mar 2014)

  New Revision: 71b860863479e2e5ad892a08b6e6fef6a8605d42
  https://github.com/droonga/droonga.org/commit/71b860863479e2e5ad892a08b6e6fef6a8605d42

  Message:
    Fix typos
    
    skelton ->
    skeleton
    
    retuned ->
    returned
    
    paritions ->
    partitions
    
    skelton ->
    skeleton

  Modified files:
    _po/ja/tutorial/plugin-development/handler/index.po
    ja/tutorial/plugin-development/handler/index.md
    tutorial/plugin-development/handler/index.md

  Modified: _po/ja/tutorial/plugin-development/handler/index.po (+7 -7)
===================================================================
--- _po/ja/tutorial/plugin-development/handler/index.po    2014-03-03 10:48:29 +0900 (2b9370c)
+++ _po/ja/tutorial/plugin-development/handler/index.po    2014-03-03 12:34:10 +0900 (45d7179)
@@ -163,7 +163,7 @@ msgid ""
 "~~~"
 msgstr ""
 
-msgid "Then, create a skelton of a plugin as follows:"
+msgid "Then, create a skeleton of a plugin as follows:"
 msgstr ""
 
 msgid "lib/droonga/plugins/count-records.rb:"
@@ -286,8 +286,8 @@ msgstr ""
 
 msgid ""
 "The `Collectors::Sum` is one of built-in collectors.\n"
-"It merges results retuned from handler instances for each partition to one res"
-"ult."
+"It merges results returned from handler instances for each partition to one re"
+"sult."
 msgstr ""
 
 msgid "### Activate the plugin with `catalog.json`"
@@ -369,8 +369,8 @@ msgid ""
 " * Remember that we have configured the `Starbucks` dataset to use 3 partition"
 "s (and each has 2 replicas) in the `catalog.json` of [the basic tutorial][basi"
 "c].\n"
-" * Because it is a read-only command, a request is delivered only to paritions"
-", not to replicas.\n"
+" * Because it is a read-only command, a request is delivered only to partition"
+"s, not to replicas.\n"
 "   So there are only 3 results, not 6.\n"
 "   (TODO: I have to add a figure to indicate active nodes: [000, 001, 010, 011"
 ", 020, 021] => [000, 011, 020])\n"
@@ -615,8 +615,8 @@ msgstr ""
 msgid ""
 "And, the `Collectors::And` is bound to the step by the configuration `step.col"
 "lector`.\n"
-"It is is also one of built-in collectors, and merges boolean values retuned fr"
-"om handler instances for each partition and replica, to one boolean value."
+"It is is also one of built-in collectors, and merges boolean values returned f"
+"rom handler instances for each partition and replica, to one boolean value."
 msgstr ""
 
 msgid ""

  Modified: ja/tutorial/plugin-development/handler/index.md (+5 -5)
===================================================================
--- ja/tutorial/plugin-development/handler/index.md    2014-03-03 10:48:29 +0900 (720c5bc)
+++ ja/tutorial/plugin-development/handler/index.md    2014-03-03 12:34:10 +0900 (e785e0c)
@@ -105,7 +105,7 @@ lib
             └── count-records.rb
 ~~~
 
-Then, create a skelton of a plugin as follows:
+Then, create a skeleton of a plugin as follows:
 
 lib/droonga/plugins/count-records.rb:
 
@@ -209,7 +209,7 @@ lib/droonga/plugins/count-records.rb:
 ~~~
 
 The `Collectors::Sum` is one of built-in collectors.
-It merges results retuned from handler instances for each partition to one result.
+It merges results returned from handler instances for each partition to one result.
 
 
 ### Activate the plugin with `catalog.json`
@@ -265,7 +265,7 @@ Look at these points:
 There are 3 elements in the array. Why?
 
  * Remember that we have configured the `Starbucks` dataset to use 3 partitions (and each has 2 replicas) in the `catalog.json` of [the basic tutorial][basic].
- * Because it is a read-only command, a request is delivered only to paritions, not to replicas.
+ * Because it is a read-only command, a request is delivered only to partitions, not to replicas.
    So there are only 3 results, not 6.
    (TODO: I have to add a figure to indicate active nodes: [000, 001, 010, 011, 020, 021] => [000, 011, 020])
  * The `Collectors::Sum` collects them.
@@ -380,7 +380,7 @@ lib
             └── delete-stores.rb
 ~~~
 
-Then, create a skelton of a plugin as follows:
+Then, create a skeleton of a plugin as follows:
 
 lib/droonga/plugins/delete-stores.rb:
 
@@ -468,7 +468,7 @@ Remember, you have to extract the request message from the received task message
 The handler finds and deletes existing records which have the given keyword in its "key", by the [API of Rroonga][Groonga::Table_delete].
 
 And, the `Collectors::And` is bound to the step by the configuration `step.collector`.
-It is is also one of built-in collectors, and merges boolean values retuned from handler instances for each partition and replica, to one boolean value.
+It is is also one of built-in collectors, and merges boolean values returned from handler instances for each partition and replica, to one boolean value.
 
 ### Activate the plugin with `catalog.json`
 

  Modified: tutorial/plugin-development/handler/index.md (+5 -5)
===================================================================
--- tutorial/plugin-development/handler/index.md    2014-03-03 10:48:29 +0900 (49adec3)
+++ tutorial/plugin-development/handler/index.md    2014-03-03 12:34:10 +0900 (c5ef302)
@@ -96,7 +96,7 @@ lib
             └── count-records.rb
 ~~~
 
-Then, create a skelton of a plugin as follows:
+Then, create a skeleton of a plugin as follows:
 
 lib/droonga/plugins/count-records.rb:
 
@@ -200,7 +200,7 @@ lib/droonga/plugins/count-records.rb:
 ~~~
 
 The `Collectors::Sum` is one of built-in collectors.
-It merges results retuned from handler instances for each partition to one result.
+It merges results returned from handler instances for each partition to one result.
 
 
 ### Activate the plugin with `catalog.json`
@@ -256,7 +256,7 @@ Look at these points:
 There are 3 elements in the array. Why?
 
  * Remember that we have configured the `Starbucks` dataset to use 3 partitions (and each has 2 replicas) in the `catalog.json` of [the basic tutorial][basic].
- * Because it is a read-only command, a request is delivered only to paritions, not to replicas.
+ * Because it is a read-only command, a request is delivered only to partitions, not to replicas.
    So there are only 3 results, not 6.
    (TODO: I have to add a figure to indicate active nodes: [000, 001, 010, 011, 020, 021] => [000, 011, 020])
  * The `Collectors::Sum` collects them.
@@ -371,7 +371,7 @@ lib
             └── delete-stores.rb
 ~~~
 
-Then, create a skelton of a plugin as follows:
+Then, create a skeleton of a plugin as follows:
 
 lib/droonga/plugins/delete-stores.rb:
 
@@ -459,7 +459,7 @@ Remember, you have to extract the request message from the received task message
 The handler finds and deletes existing records which have the given keyword in its "key", by the [API of Rroonga][Groonga::Table_delete].
 
 And, the `Collectors::And` is bound to the step by the configuration `step.collector`.
-It is is also one of built-in collectors, and merges boolean values retuned from handler instances for each partition and replica, to one boolean value.
+It is is also one of built-in collectors, and merges boolean values returned from handler instances for each partition and replica, to one boolean value.
 
 ### Activate the plugin with `catalog.json`
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index