You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ds...@apache.org on 2015/03/05 03:31:42 UTC

svn commit: r1664204 - /incubator/ignite/site/trunk/features.html

Author: dsetrakyan
Date: Thu Mar  5 02:31:42 2015
New Revision: 1664204

URL: http://svn.apache.org/r1664204
Log:
fixing examples

Modified:
    incubator/ignite/site/trunk/features.html

Modified: incubator/ignite/site/trunk/features.html
URL: http://svn.apache.org/viewvc/incubator/ignite/site/trunk/features.html?rev=1664204&r1=1664203&r2=1664204&view=diff
==============================================================================
--- incubator/ignite/site/trunk/features.html (original)
+++ incubator/ignite/site/trunk/features.html Thu Mar  5 02:31:42 2015
@@ -231,7 +231,7 @@ under the License.
                         <li>Automatic Fault Tolerance</li>
                         <li>Linear Scalability</li>
                         <li>Custom Scheduling</li>
-                        <li>Checkpointing of Long Running Jobs</li>
+                        <li>Checkpointing for Long Running Jobs</li>
                         <li>ExecutorService</li>
                     </ul>
                 </div>
@@ -278,9 +278,6 @@ under the License.
                             IgniteCompute compute  = ignite.compute();
 
                             // Execute closure on all cluster nodes.
-                            // If the number of closures is less than the number of 
-                            // parameters, then Ignite will create as many closures 
-                            // as there are parameters.
                             Collection<Integer> res = ignite.compute().apply(
                                 String::length,
                                 Arrays.asList("How Many Characters".split(" "))