refactor: Fixed spelling error availability

This commit is contained in:
Michel Jonathan Schmitz
2018-11-30 09:25:55 +00:00
parent 067f583de0
commit 100d1781ba

View File

@@ -70,7 +70,7 @@ export interface SCThingThatCanBeOfferedOffer<T extends SCPriceGroup> {
/** /**
* Availability of an offer * Availability of an offer
*/ */
availability: SCThingThatCanBeOfferedAvailabilty; availability: SCThingThatCanBeOfferedAvailability;
/** /**
* The time when the thing becomes unavailable as an SCISO8601Date formatted string. * The time when the thing becomes unavailable as an SCISO8601Date formatted string.
@@ -121,8 +121,8 @@ export type SCThingThatCanBeOfferedProvider =
/** /**
* Availability of an Offer * Availability of an Offer
*/ */
export type SCThingThatCanBeOfferedAvailabilty = export type SCThingThatCanBeOfferedAvailability =
'in stock' 'in stock'
| 'out of stock' | 'out of stock'
| 'online only' | 'online only'
| 'limited availabilty'; | 'limited availability';