From 2408e94f5d6170885f9affac8ac2ff7ee8e8cb79 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 27 Feb 2017 11:30:44 -0500 Subject: [PATCH] docs(grid): copy editing --- src/components/grid/col.ts | 2 +- src/components/grid/row.ts | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/grid/col.ts b/src/components/grid/col.ts index 0f8ddf4bf5..f305fa75a9 100644 --- a/src/components/grid/col.ts +++ b/src/components/grid/col.ts @@ -19,7 +19,7 @@ import { Directive } from '@angular/core'; * | align-self-center | Adds `align-self: center`. The column will be vertically aligned in the center. | * | align-self-end | Adds `align-self: flex-end`. The column will be vertically aligned at the bottom. | * | align-self-stretch | Adds `align-self: stretch`. The column will be stretched to take up the entire height of the row. | - * | align-self-baseline | Adds `align-self: baseline`. The column will be vertically aligned at its baselines. | + * | align-self-baseline | Adds `align-self: baseline`. The column will be vertically aligned at its baseline. | * * */ diff --git a/src/components/grid/row.ts b/src/components/grid/row.ts index 6ddebfb122..f962217c85 100644 --- a/src/components/grid/row.ts +++ b/src/components/grid/row.ts @@ -22,11 +22,11 @@ import { Directive } from '@angular/core'; * | align-items-end | Adds `align-items: flex-end`. All columns will be vertically aligned at the bottom, unless they specify their own alignment. | * | align-items-stretch | Adds `align-items: stretch`. All columns will be stretched to take up the entire height of the row, unless they specify their own alignment. | * | align-items-baseline | Adds `align-items: baseline`. All columns will be vertically aligned at their baselines, unless they specify their own alignment. | - * | justify-content-start | Adds `justify-content: start`. All columns will be horizontally aligned at the start. | - * | justify-content-center | Adds `justify-content: center`. All columns will be horizontally aligned at the center. | - * | justify-content-end | Adds `justify-content: end`. All columns will be horizontally aligned at the end. | - * | justify-content-around | Adds `justify-content: space-around`. All columns will be horizontally aligned with equal space around them. | - * | justify-content-between | Adds `justify-content: space-between`. All columns will be horizontally aligned with a half-size space on either end. | + * | justify-content-start | Adds `justify-content: start`. All columns will be horizontally aligned at the start. | + * | justify-content-center | Adds `justify-content: center`. All columns will be horizontally aligned at the center. | + * | justify-content-end | Adds `justify-content: end`. All columns will be horizontally aligned at the end. | + * | justify-content-around | Adds `justify-content: space-around`. All columns will be horizontally aligned with equal space around them. | + * | justify-content-between | Adds `justify-content: space-between`. All columns will be horizontally aligned with a half-size space on either end. | * * */