summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid BRASSELY <brasseld@gmail.com>2014-01-17 09:31:14 +0100
committerDavid BRASSELY <brasseld@gmail.com>2014-01-17 09:31:14 +0100
commit3cadec1fcd0de5fcd095d97053d4638f8955ec58 (patch)
treece4be79128f2f07a264a69f3b623414b732499b3 /doc
parentf3be8161a574aaea44a9d45888ed824937644424 (diff)
downloadjcommander-3cadec1fcd0de5fcd095d97053d4638f8955ec58.tar.gz
Typo error in documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html
index ad3d051..a92a969 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -200,7 +200,7 @@ For example, here is a converter that turns a string into a <tt>File</tt>:
<pre class="brush: java">
public class FileConverter implements IStringConverter&lt;File&gt; {
@Override
- private File convert(String value) {
+ public File convert(String value) {
return new File(value);
}
}