From b5e151af7602e5bde247dc1b6cd6592fcb467e1a Mon Sep 17 00:00:00 2001 From: Mohan Venkateshaiah Date: Thu, 12 Apr 2018 16:35:39 +0530 Subject: [PATCH] update the doc to fix typo errors. --- metron-analytics/metron-profiler/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/metron-analytics/metron-profiler/README.md b/metron-analytics/metron-profiler/README.md index 218ec6618c..01918aaddb 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)} ```