fix numbered points
All checks were successful
Build and Deploy MkDocs / deploy (push) Successful in 10s

This commit is contained in:
John Gatward
2026-03-04 12:10:00 +00:00
parent e21d76af6a
commit 53f55e1fbd

View File

@@ -33,7 +33,7 @@ Consider the following API method names:
4. `CancelReservation()`
5. `RescheduleFlight()`
6. `UpgradeTrip()`
<br>
- Each one of these RPCs is pretty descriptive, but we have to memorize these methods, each of which is subtly different.
- e.g. sometimes we talk about flight, other times we talk about a trip or a reservation.
- We also need to memorise which action is used in the method.
@@ -46,7 +46,7 @@ We need to standardise, by providing a standard set of building blocks - method-
3. `ListFlightReservation()`
4. `DeleteFlightReservation()`
5. `UpdateFlightReservation()`
<br>
- Resource-oriented APIs will be much easier for users to learn, understand and remember.
- Standardisation makes it easy to combine what you already know (set of standard actions) which the resource which is easy to learn.