Skip to content

Commit 49a3e63

Browse files
authored
Fix example code in README.md (#435)
Add missing `http` prefix to match surrounding code.
1 parent 92a6548 commit 49a3e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class UserAgentClient extends http.BaseClient {
6161
6262
UserAgentClient(this.userAgent, this._inner);
6363
64-
Future<StreamedResponse> send(BaseRequest request) {
64+
Future<http.StreamedResponse> send(http.BaseRequest request) {
6565
request.headers['user-agent'] = userAgent;
6666
return _inner.send(request);
6767
}

0 commit comments

Comments
 (0)