You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/06/30 21:10:30 UTC

flink git commit: [hotfix] Fixed typo in docs

Repository: flink
Updated Branches:
  refs/heads/master c2808986c -> ead1a2074


[hotfix] Fixed typo in docs

This closes #6219.


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

Branch: refs/heads/master
Commit: ead1a20748c88e33f0a1ab6930b5b55774f642ba
Parents: c280898
Author: Alejandro Alcalde <al...@gmail.com>
Authored: Wed Jun 27 18:17:54 2018 +0200
Committer: Till Rohrmann <tr...@apache.org>
Committed: Sat Jun 30 23:10:13 2018 +0200

----------------------------------------------------------------------
 docs/monitoring/metrics.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/ead1a207/docs/monitoring/metrics.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md
index 7fe5e7a..01ebefe 100644
--- a/docs/monitoring/metrics.md
+++ b/docs/monitoring/metrics.md
@@ -426,7 +426,7 @@ class MyMapper extends RichMapFunction[Long,Long] {
 
 Every metric is assigned an identifier and a set of key-value pairs under which the metric will be reported.
 
-THe identifier is based on 3 components: the user-defined name when registering the metric, an optional user-defined scope and a system-provided scope.
+The identifier is based on 3 components: a user-defined name when registering the metric, an optional user-defined scope and a system-provided scope.
 For example, if `A.B` is the system scope, `C.D` the user scope and `E` the name, then the identifier for the metric will be `A.B.C.D.E`.
 
 You can configure which delimiter to use for the identifier (default: `.`) by setting the `metrics.scope.delimiter` key in `conf/flink-conf.yaml`.