You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ni...@apache.org on 2018/04/13 20:50:34 UTC

metron git commit: METRON-1522 Fix the typo errors at profile debugger readme (MohanDV via nickwallen) closes apache/metron#992

Repository: metron
Updated Branches:
  refs/heads/master f8b7c5852 -> 1d3e7fcd7


METRON-1522 Fix the typo errors at profile debugger readme  (MohanDV via nickwallen) closes apache/metron#992


Project: http://git-wip-us.apache.org/repos/asf/metron/repo
Commit: http://git-wip-us.apache.org/repos/asf/metron/commit/1d3e7fcd
Tree: http://git-wip-us.apache.org/repos/asf/metron/tree/1d3e7fcd
Diff: http://git-wip-us.apache.org/repos/asf/metron/diff/1d3e7fcd

Branch: refs/heads/master
Commit: 1d3e7fcd7db64e7cb6d986802240fcbae174ae91
Parents: f8b7c58
Author: MohanDV <mo...@gmail.com>
Authored: Fri Apr 13 16:50:14 2018 -0400
Committer: nickallen <ni...@apache.org>
Committed: Fri Apr 13 16:50:14 2018 -0400

----------------------------------------------------------------------
 metron-analytics/metron-profiler/README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/metron/blob/1d3e7fcd/metron-analytics/metron-profiler/README.md
----------------------------------------------------------------------
diff --git a/metron-analytics/metron-profiler/README.md b/metron-analytics/metron-profiler/README.md
index 218ec66..01918aa 100644
--- a/metron-analytics/metron-profiler/README.md
+++ b/metron-analytics/metron-profiler/README.md
@@ -152,8 +152,8 @@ Creating and refining profiles is an iterative process.  Iterating against a liv
 	* If a message is needed by two profiles, then two routes have been followed.
 
 	```
-	[Stellar]>>> p := PROFILER_INIT(conf)
-	[Stellar]>>> p
+	[Stellar]>>> profiler := PROFILER_INIT(conf)
+	[Stellar]>>> profiler
 	Profiler{1 profile(s), 0 messages(s), 0 route(s)}
 	```
 
@@ -172,11 +172,11 @@ Creating and refining profiles is an iterative process.  Iterating against a liv
 1. Apply the message to your Profiler, as many times as you like.
 
 	```
-	[Stellar]>>> PROFILER_APPLY(msg, p)
+	[Stellar]>>> PROFILER_APPLY(msg, profiler)
 	Profiler{1 profile(s), 1 messages(s), 1 route(s)}
 	```
 	```
-	[Stellar]>>> PROFILER_APPLY(msg, p)
+	[Stellar]>>> PROFILER_APPLY(msg, profiler)
 	Profiler{1 profile(s), 2 messages(s), 2 route(s)}
 	```
 
@@ -205,7 +205,7 @@ Creating and refining profiles is an iterative process.  Iterating against a liv
 	```
 	Apply those 10 messages to your profile(s).
 	```
-	[Stellar]>>> PROFILER_APPLY(msgs, p)
+	[Stellar]>>> PROFILER_APPLY(msgs, profiler)
 	  Profiler{1 profile(s), 10 messages(s), 10 route(s)}
 	```