From 707c208375e3950a2ff3a8e156eb54d39a6a9518 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 23 Sep 2020 23:17:02 +1000 Subject: [PATCH] docs: Fix simple typo, globaly -> globally (#1122) * docs: Fix simple typo, globaly -> globally There is a small typo in docsSource/sections/01-usage.md, docsSource/sections/02-utilities.md. Should read `globally` rather than `globaly`. * Rebuild docs --- docs/index.html | 4 ++-- docsSource/sections/01-usage.md | 2 +- docsSource/sections/02-utilities.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index 039e37b..ad3d646 100644 --- a/docs/index.html +++ b/docs/index.html @@ -902,7 +902,7 @@ --animate-duration: 2s; } -/* This changes all the animations globaly */ +/* This changes all the animations globally */ :root { --animate-duration: 800ms; --animate-delay: 0.9s; @@ -996,7 +996,7 @@ document.documentElement.style.setProperty('--animate-duration', '.5s'); -

The animate__animated class has a default speed of 1s. You can also customize the animations duration through the --animate-duration property, globaly or locally. This will affect both the animations and the utility classes. Example:

+

The animate__animated class has a default speed of 1s. You can also customize the animations duration through the --animate-duration property, globally or locally. This will affect both the animations and the utility classes. Example:

/* All animations will take twice as long to finish */
 :root {
   --animate-duration: 2s;
diff --git a/docsSource/sections/01-usage.md b/docsSource/sections/01-usage.md
index c5bf4e2..bb02dc8 100644
--- a/docsSource/sections/01-usage.md
+++ b/docsSource/sections/01-usage.md
@@ -67,7 +67,7 @@ Example:
   --animate-duration: 2s;
 }
 
-/* This changes all the animations globaly */
+/* This changes all the animations globally */
 :root {
   --animate-duration: 800ms;
   --animate-delay: 0.9s;
diff --git a/docsSource/sections/02-utilities.md b/docsSource/sections/02-utilities.md
index d72a18a..352f45c 100644
--- a/docsSource/sections/02-utilities.md
+++ b/docsSource/sections/02-utilities.md
@@ -48,7 +48,7 @@ You can control the speed of the animation by adding these classes, as below:
 | `animate__fast`   | `800ms`            |
 | `animate__faster` | `500ms`            |
 
-The `animate__animated` class has a default speed of `1s`. You can also customize the animations duration through the `--animate-duration` property, globaly or locally. This will affect both the animations and the utility classes. Example:
+The `animate__animated` class has a default speed of `1s`. You can also customize the animations duration through the `--animate-duration` property, globally or locally. This will affect both the animations and the utility classes. Example:
 
 ```css
 /* All animations will take twice as long to finish */