Jelajahi Sumber

chore(core): Fix docs tag

Michael Bromley 5 tahun lalu
induk
melakukan
a6f754e270

+ 1 - 1
packages/core/src/config/order/default-stock-allocation-strategy.ts

@@ -9,7 +9,7 @@ import { StockAllocationStrategy } from './stock-allocation-strategy';
  * Allocates stock when the Order transitions from `ArrangingPayment` to either
  * `PaymentAuthorized` or `PaymentSettled`.
  *
- * @docsCategory order
+ * @docsCategory orders
  */
 export class DefaultStockAllocationStrategy implements StockAllocationStrategy {
     shouldAllocateStock(

+ 1 - 1
packages/core/src/config/order/stock-allocation-strategy.ts

@@ -8,7 +8,7 @@ import { OrderState } from '../../service/helpers/order-state-machine/order-stat
  * This strategy is responsible for deciding at which stage in the order process
  * stock will be allocated.
  *
- * @docsCategory order
+ * @docsCategory orders
  */
 export interface StockAllocationStrategy extends InjectableStrategy {
     /**