Skip to content

Commit e241504

Browse files
authored
Fix typo
1 parent 9e6cf0e commit e241504

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,9 @@ You can make any arbitrary API call as well directly with the `.get` method.
141141
Keep in mind, this returns a raw `Resource`
142142

143143
```java
144-
Resource resource = amadeus.get('/v2/reference-data/urls/checkin-links',
145-
Params.with("airlineCode", "BA"));
144+
Response response = amadeus.get("/v2/reference-data/urls/checkin-links", Params.with("airlineCode", "BA"));
146145

147-
resource.getResult();
146+
response.getResult();
148147
```
149148

150149
## Response

0 commit comments

Comments
 (0)