From 0942929c93c5836571f75b7f4ea7e568810e9b88 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Wed, 28 Feb 2024 02:33:06 -0800 Subject: [PATCH] Align `reorderSlotComponent` description with earlier narrative text --- docs/source/configuration/slots.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/configuration/slots.md b/docs/source/configuration/slots.md index 7242203bea..75e9a70924 100644 --- a/docs/source/configuration/slots.md +++ b/docs/source/configuration/slots.md @@ -276,9 +276,9 @@ config.getSlotComponents(slot: string): string[] ### `reorderSlotComponent` -`reorderSlotComponent` reorders the list of slot components registered per slot. +`reorderSlotComponent` reorders the list of named group of slot components registered per slot. -Given a `slot` and the `name` of a slot component, you must either specify the desired `position` or perform an `action` to reposition the slot component in the given slot, but not both. +Given a `slot` and the `name` of grouped slot components, you must either specify the desired `position` or perform an `action` to reposition the slot component group in the given slot, but not both. The available actions are `"after"`, `"before"`, `"first"`, and `"last"`. `"first"` and `"last"` do not accept a `target`.