You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2020/08/11 21:44:09 UTC

[nifi] branch main updated: NIFI-XXXX Fixed typo in documentation.

This is an automated email from the ASF dual-hosted git repository.

alopresto pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new a794930  NIFI-XXXX Fixed typo in documentation.
a794930 is described below

commit a79493082c8ab90b40e40fd21ffe08008857cac0
Author: Kyle Miracle <km...@gmail.com>
AuthorDate: Wed Aug 5 18:45:11 2020 -0400

    NIFI-XXXX Fixed typo in documentation.
    
    This closes #4455.
    
    Signed-off-by: Andy LoPresto <al...@apache.org>
---
 .../main/java/org/apache/nifi/processors/standard/UpdateCounter.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateCounter.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateCounter.java
index e8f3bcf..0edcba6 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateCounter.java
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/UpdateCounter.java
@@ -48,7 +48,7 @@ public class UpdateCounter extends AbstractProcessor {
     static final PropertyDescriptor COUNTER_NAME = new PropertyDescriptor.Builder()
             .name("counter-name")
             .displayName("Counter Name")
-            .description("The name of the counter you want to set the value off - supports expression language like ${counterName}")
+            .description("The name of the counter you want to set the value of - supports expression language like ${counterName}")
             .required(true)
             .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
             .addValidator(StandardValidators.ATTRIBUTE_EXPRESSION_LANGUAGE_VALIDATOR)