Author: dsetrakyan
Date: Thu Mar 5 02:36:03 2015
New Revision: 1664208
URL: http://svn.apache.org/r1664208
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=1664208&r1=1664207&r2=1664208&view=diff
==============================================================================
--- incubator/ignite/site/trunk/features.html (original)
+++ incubator/ignite/site/trunk/features.html Thu Mar 5 02:36:03 2015
@@ -244,8 +244,8 @@ under the License.
<!-- Nav tabs -->
<ul id="compute-examples" class="nav nav-tabs">
<li class="active"><a href="#compute-example-broadcast"
aria-controls="home" data-toggle="tab">Broadcast</a></li>
- <li><a href="#compute-example-runnable"
aria-controls="profile" data-toggle="tab">Runnable</a></li>
- <li><a href="#compute-example-closure"
aria-controls="profile" data-toggle="tab">Distributed Closure</a></li>
+ <li><a href="#compute-example-countchars"
aria-controls="profile" data-toggle="tab">Count Characters with
Callable</a></li>
+ <li><a href="#compute-example-closure"
aria-controls="profile" data-toggle="tab">Count Characters with Closure</a></li>
</ul>
<!-- Tab panes -->
@@ -258,7 +258,7 @@ under the License.
ignite.compute().broadcast(() -> "Hello Node!");
</pre>
</div>
- <div class="tab-pane" id="compute-example-runnable">
+ <div class="tab-pane" id="compute-example-countchars">
<pre class="brush:java">
Collection<IgniteCallable<Integer>>
calls = new ArrayList<>();