From 33acd7846966fb16aa74c8302b8b1c1810e50359 Mon Sep 17 00:00:00 2001 From: obedm503 Date: Tue, 23 Apr 2019 22:30:12 -0500 Subject: [PATCH] docs(toolbar): fix end slot documentation (#18092) --- core/src/components/toolbar/readme.md | 2 +- core/src/components/toolbar/toolbar.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/toolbar/readme.md b/core/src/components/toolbar/readme.md index a6de780090..1b7b9e54ba 100644 --- a/core/src/components/toolbar/readme.md +++ b/core/src/components/toolbar/readme.md @@ -686,7 +686,7 @@ export default Example; | Slot | Description | | ------------- | -------------------------------------------------------------------------------------------------------- | | | Content is placed between the named slots if provided without a slot. | -| `"end"` | Content is placed to the left of the toolbar text in LTR, and to the right in RTL. | +| `"end"` | Content is placed to the right of the toolbar text in LTR, and to the left in RTL. | | `"primary"` | Content is placed to the right of the toolbar text in `ios` mode, and to the far right in `md` mode. | | `"secondary"` | Content is placed to the left of the toolbar text in `ios` mode, and directly to the right in `md` mode. | | `"start"` | Content is placed to the left of the toolbar text in LTR, and to the right in RTL. | diff --git a/core/src/components/toolbar/toolbar.tsx b/core/src/components/toolbar/toolbar.tsx index ade3ad61e4..c38a33760d 100644 --- a/core/src/components/toolbar/toolbar.tsx +++ b/core/src/components/toolbar/toolbar.tsx @@ -8,7 +8,7 @@ import { createColorClasses } from '../../utils/theme'; * @slot start - Content is placed to the left of the toolbar text in LTR, and to the right in RTL. * @slot secondary - Content is placed to the left of the toolbar text in `ios` mode, and directly to the right in `md` mode. * @slot primary - Content is placed to the right of the toolbar text in `ios` mode, and to the far right in `md` mode. - * @slot end - Content is placed to the left of the toolbar text in LTR, and to the right in RTL. + * @slot end - Content is placed to the right of the toolbar text in LTR, and to the left in RTL. */ @Component({ tag: 'ion-toolbar',