Skip to content

Commit b528d57

Browse files
fix: documentation typos.
1 parent 681381d commit b528d57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google-http-client/src/main/java/com/google/api/client/http/UrlEncodedContent.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ public UrlEncodedContent(Object data) {
6464
}
6565

6666
/**
67-
* Initialize the UrlEncodedContent with our without the legacy and deprecated escapeUri encoder
67+
* Initialize the UrlEncodedContent with or without the legacy and deprecated escapeUri encoder
6868
* @param data key name/value data
69-
* @param useUriPathEncoding Escapes the string value so it can be safely included in URI path segments.
69+
* @param useUriPathEncoding escapes the string value so it can be safely included in URI path segments.
7070
* For details on escaping URIs, see <a href="http://tools.ietf.org/html/rfc3986#section-2.4">RFC 3986 -
7171
* section 2.4</a>
7272
*/
73-
public UrlEncodedContent(Object data, Boolean useUriPathEncoding) {
73+
public UrlEncodedContent(Object data, boolean useUriPathEncoding) {
7474
super(UrlEncodedParser.MEDIA_TYPE);
7575
setData(data);
7676
this.uriPathEncodingFlag = useUriPathEncoding;

0 commit comments

Comments
 (0)