From ecce117afe0229d2af961fc2d0475636600fc9a8 Mon Sep 17 00:00:00 2001 From: Adam Carroll Date: Mon, 15 May 2017 21:29:07 +0200 Subject: [PATCH] Fixed a typo --- src/docs/asciidoc/best-practices.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/best-practices.asc b/src/docs/asciidoc/best-practices.asc index 555c4f9..b5aa4d5 100644 --- a/src/docs/asciidoc/best-practices.asc +++ b/src/docs/asciidoc/best-practices.asc @@ -550,7 +550,7 @@ javadoc -javafx MyClass.java -d testdir === Example Generally, if you introduce a JavaFX property field, you will add its corresponding property method along with setter and getter. In this case, you are advised to bundle them together and document _only_ the field. The "-javafx" option on the javadoc command will generate the appropriate documentation for the rest of the methods. -*N.B.* - You can documentation individual method in case you want to add explicit information for the method. +*N.B.* - You can document an individual method in case you want to add explicit information for the method. [source,java] ----