From 1ec7bcd28667a52f3135a80e06d96c82302790ed Mon Sep 17 00:00:00 2001 From: Willie Engelbrecht Date: Mon, 26 Feb 2018 15:52:27 +0100 Subject: [PATCH] NIFI-4910 Fixing slight spelling mistake in error message, needs a space Signed-off-by: James Wing This closes #2492. --- nifi-docs/src/main/asciidoc/developer-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nifi-docs/src/main/asciidoc/developer-guide.adoc b/nifi-docs/src/main/asciidoc/developer-guide.adoc index 3d820d8556..bde08be17f 100644 --- a/nifi-docs/src/main/asciidoc/developer-guide.adoc +++ b/nifi-docs/src/main/asciidoc/developer-guide.adoc @@ -2520,7 +2520,7 @@ Sometimes it may be desirable to deprecate a component. Whenever this occurs the [source, java] ---- - @DeprecationNotice(alternatives = {ListenSyslog.class}, classNames = {"org.apache.nifi.processors.standard.ListenRELP"}, reason = "Technologyhas been superseded", ) + @DeprecationNotice(alternatives = {ListenSyslog.class}, classNames = {"org.apache.nifi.processors.standard.ListenRELP"}, reason = "Technology has been superseded", ) public class ListenOldProtocol extends AbstractProcessor { ---- As you can see, the alternatives can be used to define and array of alternative Components, while classNames can be