Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
Suggestion to fix a small typo I found
  • Loading branch information
digodk committed Sep 5, 2018
1 parent 32f2a8b commit 0d3fe05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ try {
.withResourcePath("/stage/path").build());

System.out.println("Response: " + response.getBody());
System.out.println("Status: " + response.getHttpResponse.getStatusCode());
System.out.println("Status: " + response.getHttpResponse().getStatusCode());

} catch (GenericApiGatewayException e) { // exception thrown for any non-2xx response
System.out.println(String.format("Client threw exception with message %s and status code %s",
e.getMessage(), e.getStatusCode()));
}

```
```

0 comments on commit 0d3fe05

Please sign in to comment.