From 7080e895d836edb03fa585bfc0d5345428bf6c34 Mon Sep 17 00:00:00 2001 From: Jon Chretien Date: Fri, 20 Feb 2015 17:06:42 -0500 Subject: [PATCH] fixed a few typos in the docs --- docs/_includes/css/less.html | 10 +++++----- docs/_includes/getting-started/examples.html | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/_includes/css/less.html b/docs/_includes/css/less.html index a750286517..6dc3ae596f 100644 --- a/docs/_includes/css/less.html +++ b/docs/_includes/css/less.html @@ -92,7 +92,7 @@ a {

Note that the @link-hover-color uses a function, another awesome tool from Less, to automagically create the right hover color. You can use darken, lighten, saturate, and desaturate.

Typography

-

Easily set your type face, text size, leading, and more with a few quick variables. Bootstrap makes use of these as well to provide easy typographic mixins.

+

Easily set your typeface, text size, leading, and more with a few quick variables. Bootstrap makes use of these as well to provide easy typographic mixins.

{% highlight scss %} @font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; @font-family-serif: Georgia, "Times New Roman", Times, serif; @@ -162,7 +162,7 @@ a {

Box-sizing

Reset your components' box model with a single mixin. For context, see this helpful article from Mozilla.

-

The mixin is deprecated as of v3.2.0, with the introduction of autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixin internally until Bootstrap v4.

+

The mixin is deprecated as of v3.2.0, with the introduction of Autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixin internally until Bootstrap v4.

{% highlight scss %} .box-sizing(@box-model) { -webkit-box-sizing: @box-model; // Safari <= 5 @@ -205,7 +205,7 @@ a {

Transitions

Multiple mixins for flexibility. Set all transition information with one, or specify a separate delay and duration as needed.

-

The mixins are deprecated as of v3.2.0, with the introduction of autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

+

The mixins are deprecated as of v3.2.0, with the introduction of Autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

{% highlight scss %} .transition(@transition) { -webkit-transition: @transition; @@ -237,7 +237,7 @@ a {

Transformations

Rotate, scale, translate (move), or skew any object.

-

The mixins are deprecated as of v3.2.0, with the introduction of autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

+

The mixins are deprecated as of v3.2.0, with the introduction of Autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

{% highlight scss %} .rotate(@degrees) { -webkit-transform: rotate(@degrees); @@ -294,7 +294,7 @@ a {

Animations

A single mixin for using all of CSS3's animation properties in one declaration and other mixins for individual properties.

-

The mixins are deprecated as of v3.2.0, with the introduction of autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

+

The mixins are deprecated as of v3.2.0, with the introduction of Autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.

{% highlight scss %} .animation(@animation) { -webkit-animation: @animation; diff --git a/docs/_includes/getting-started/examples.html b/docs/_includes/getting-started/examples.html index 2b750a10f9..2ae7bce592 100644 --- a/docs/_includes/getting-started/examples.html +++ b/docs/_includes/getting-started/examples.html @@ -152,7 +152,7 @@ Off-canvas navigation example -

Offcanvas

+

Off-canvas

Build a toggleable off-canvas navigation menu for use with Bootstrap.