You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2016/05/02 21:37:20 UTC

[4/4] incubator-quarks-website git commit: address pr-53 feedback

address pr-53 feedback


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/207ee433
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/tree/207ee433
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/diff/207ee433

Branch: refs/heads/master
Commit: 207ee433ccbfc15f06b7d9e5fdb18d30d743a779
Parents: 4a3afae
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Mon May 2 15:36:59 2016 -0400
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Mon May 2 15:36:59 2016 -0400

----------------------------------------------------------------------
 site/docs/quarks-getting-started.md              | 2 +-
 site/recipes/recipe_adaptable_deadtime_filter.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/blob/207ee433/site/docs/quarks-getting-started.md
----------------------------------------------------------------------
diff --git a/site/docs/quarks-getting-started.md b/site/docs/quarks-getting-started.md
index a1e2336..9aab9a1 100644
--- a/site/docs/quarks-getting-started.md
+++ b/site/docs/quarks-getting-started.md
@@ -142,7 +142,7 @@ Calling `topology.poll()` to define a source stream creates a `TStream<Double>`
 
 A streaming application can run indefinitely, so the `TStream` might see an arbitrarily large number of readings pass through it. Because a `TStream` represents the flow of your data, it supports a number of operations which allow you to modify your data.
 
-## Filtering a `TStream`
+### Filtering a `TStream`
 
 In our example, we want to filter the stream of temperature readings, and remove any "uninteresting" or expected readings&mdash;specifically readings which are above 50 degrees and below 80 degrees. To do this, we call the `TStream`'s `filter` method and pass in a function that returns *true* if the data is interesting and *false* if the data is uninteresting:
 

http://git-wip-us.apache.org/repos/asf/incubator-quarks-website/blob/207ee433/site/recipes/recipe_adaptable_deadtime_filter.md
----------------------------------------------------------------------
diff --git a/site/recipes/recipe_adaptable_deadtime_filter.md b/site/recipes/recipe_adaptable_deadtime_filter.md
index 76d773e..8441c9f 100644
--- a/site/recipes/recipe_adaptable_deadtime_filter.md
+++ b/site/recipes/recipe_adaptable_deadtime_filter.md
@@ -60,7 +60,7 @@ cmds.sink(json -> setDeadtimePeriod(deadtimeFilteredEngineTemp,
 
 ## The final application
 
-When the application is run it will initially print out temperature sensor readings every second for 15 seconds&mdash;the deadtime period is 0. `Then every 15 seconds the application will toggle the deadtime period between 5 seconds and 0 seconds, resulting in a reduction in tuples being printed during the 5 second deadtime period.
+When the application is run it will initially print out temperature sensor readings every second for 15 seconds&mdash;the deadtime period is 0. Then every 15 seconds the application will toggle the deadtime period between 5 seconds and 0 seconds, resulting in a reduction in tuples being printed during the 5 second deadtime period.
 
 ```java
 import java.util.Date;