Repository: nifi Updated Branches: refs/heads/master 7314af617 -> 0d7296905
NIFI-1482 - DeveloperGuide :: Controller Service is using wrong method name Signed-off-by: Aldrin Piri <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/0d729690 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/0d729690 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/0d729690 Branch: refs/heads/master Commit: 0d72969053e67043cb5843b499bb5e33ab267de0 Parents: 7314af6 Author: Lars Francke <[email protected]> Authored: Fri Feb 5 00:41:03 2016 +0100 Committer: Aldrin Piri <[email protected]> Committed: Fri Feb 5 23:35:10 2016 -0500 ---------------------------------------------------------------------- nifi-docs/src/main/asciidoc/developer-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/0d729690/nifi-docs/src/main/asciidoc/developer-guide.adoc ---------------------------------------------------------------------- diff --git a/nifi-docs/src/main/asciidoc/developer-guide.adoc b/nifi-docs/src/main/asciidoc/developer-guide.adoc index 75f9ecf..ecb3892 100644 --- a/nifi-docs/src/main/asciidoc/developer-guide.adoc +++ b/nifi-docs/src/main/asciidoc/developer-guide.adoc @@ -1803,7 +1803,7 @@ that references a Controller Service as such: ---- public static final PropertyDescriptor SSL_CONTEXT_SERVICE = new PropertyDescriptor.Builder() .name("SSL Context Service") - .details("Specified the SSL Context Service that can be used to create secure connections") + .description("Specified the SSL Context Service that can be used to create secure connections") .required(true) .identifiesControllerService(SSLContextService.class) .build();
