docs(toolbar): fix end slot documentation (#18092)

This commit is contained in:
obedm503
2019-04-23 22:30:12 -05:00
committed by Brandy Carney
parent ca233b547a
commit 33acd78469
2 changed files with 2 additions and 2 deletions

View File

@@ -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. |

View File

@@ -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',