Skip to content

Commit 1db708a

Browse files
committed
Fixes readme styles
1 parent 027b11f commit 1db708a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,13 @@ If you would need or want to view what requests are being made to the EasyPost A
174174
```javascript
175175
const client = new EasyPostClient('my-key');
176176

177-
const logOutgoingRequest = (request) => console.log("Outgoing:", request);
178-
const logResponse = (response) => console.log("Response:", response)
177+
const logOutgoingRequest = (request) => console.log('Outgoing:', request);
178+
const logResponse = (response) => console.log('Response:', response);
179179

180180
// optionally add your hook to listen for outgoing requests
181181
client.addRequestHook(logOutgoingRequest);
182182
// and optionally the hook for the response
183-
client.addResponseHook(logResponse)
183+
client.addResponseHook(logResponse);
184184

185185
// ...do other stuff
186186

0 commit comments

Comments
 (0)