Repository: storm
Updated Branches:
  refs/heads/master 8036109f6 -> e790828ba


Fix java code error in doc


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/40a6cf08
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/40a6cf08
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/40a6cf08

Branch: refs/heads/master
Commit: 40a6cf08cdf6f4269e7e41d3c7d8026e340767da
Parents: 82caf66
Author: Zhihui Jiao <[email protected]>
Authored: Wed Jan 28 20:48:22 2015 +0800
Committer: Zhihui Jiao <[email protected]>
Committed: Wed Jan 28 20:48:22 2015 +0800

----------------------------------------------------------------------
 docs/documentation/Trident-API-Overview.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/40a6cf08/docs/documentation/Trident-API-Overview.md
----------------------------------------------------------------------
diff --git a/docs/documentation/Trident-API-Overview.md 
b/docs/documentation/Trident-API-Overview.md
index cd097cd..7b76fe5 100644
--- a/docs/documentation/Trident-API-Overview.md
+++ b/docs/documentation/Trident-API-Overview.md
@@ -59,7 +59,7 @@ The resulting tuples would have fields ["a", "b", "c", "d"] 
and look like this:
 Filters take in a tuple as input and decide whether or not to keep that tuple 
or not. Suppose you had this filter:
 
 ```java
-public class MyFilter extends BaseFunction {
+public class MyFilter extends BaseFilter {
     public boolean isKeep(TridentTuple tuple) {
         return tuple.getInteger(0) == 1 && tuple.getInteger(1) == 2;
     }

Reply via email to