Fix possible JavaDoc error in QueryStringEncoder. Type mismatch.

This commit is contained in:
Norman Maurer 2012-01-08 21:53:02 +01:00
parent 54bba7239c
commit 53fede511c

View File

@ -29,7 +29,7 @@ import java.util.List;
* This encoder is for one time use only. Create a new instance for each URI. * This encoder is for one time use only. Create a new instance for each URI.
* *
* <pre> * <pre>
* {@link QueryStringEncoder} encoder = new {@link QueryStringDecoder}("/hello"); * {@link QueryStringEncoder} encoder = new {@link QueryStringEncoder}("/hello");
* encoder.addParam("recipient", "world"); * encoder.addParam("recipient", "world");
* assert encoder.toString().equals("/hello?recipient=world"); * assert encoder.toString().equals("/hello?recipient=world");
* </pre> * </pre>