Skip to content

Commit 2475bbb

Browse files
authored
Fix typo
Flight offer search instead of flight offers search
1 parent cad0689 commit 2475bbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ FlightOffer[] flightOffers = amadeus.shopping.flightOffers.get(Params
224224
.and("destination", "MAD")
225225
.and("departureDate", "2020-04-01"));
226226

227-
// Flight Offer Search v2 GET
227+
// Flight Offers Search v2 GET
228228
FlightOfferSearch[] flightOffersSearches = amadeus.shopping.flightOffersSearch.get(
229229
Params.with("originLocationCode", "SYD")
230230
.and("destinationLocationCode", "BKK")
@@ -233,7 +233,7 @@ FlightOfferSearch[] flightOffersSearches = amadeus.shopping.flightOffersSearch.g
233233
.and("adults", 2)
234234
.and("max", 3));
235235

236-
// Flight Offer Search v2 POST
236+
// Flight Offers Search v2 POST
237237
// body can be a String version of your JSON or a JsonObject
238238
FlightOfferSearch[] flightOffersSearches = amadeus.shopping.flightOffersSearch.post(body);
239239

0 commit comments

Comments
 (0)