You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by wc...@apache.org on 2016/03/29 18:54:32 UTC

[3/7] incubator-quarks-website git commit: [QUARKS-85] Fix for Table of Contents

[QUARKS-85] Fix for Table of Contents


Project: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/commit/6e0c0154
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/tree/6e0c0154
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/diff/6e0c0154

Branch: refs/heads/master
Commit: 6e0c01544a80691b7e35186b5b3be3fdf1e0461b
Parents: 2ffeaba
Author: Queenie Ma <qu...@gmail.com>
Authored: Thu Mar 24 17:54:49 2016 -0700
Committer: Queenie Ma <qu...@gmail.com>
Committed: Thu Mar 24 17:54:49 2016 -0700

----------------------------------------------------------------------
 site/docs/common-quarks-operations.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/blob/6e0c0154/site/docs/common-quarks-operations.md
----------------------------------------------------------------------
diff --git a/site/docs/common-quarks-operations.md b/site/docs/common-quarks-operations.md
index 5f2f466..1ccf953 100644
--- a/site/docs/common-quarks-operations.md
+++ b/site/docs/common-quarks-operations.md
@@ -10,7 +10,7 @@ TStream.map() is arguably the most used method in the Quarks API. Its two main p
 
 <br>
 
-#### Changing a TStream's Tuple Type
+### Changing a TStream's Tuple Type
 In addition to filtering tuples, TStreams support operations that *transform* tuples from one Java type to another by invoking the TStream.map() method.
 
 <img src="images/Map_Type_Change.jpg" style="width:750px;height:150px;">
@@ -43,7 +43,7 @@ As mentioned in the [getting started guide](quarks-getting-started), a TStream c
 <br>
 
 
-#### Performing Stateful Operations
+### Performing Stateful Operations
 
 In all previous examples, the operations performed on a TStream have been stateless; keeping track of information over multiple invocations of the same operation has not been necessary. What if we want to keep track of the number of Strings sent over a stream? To do this, we need our TStream.map() method to contain a counter as state.