summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}
}