aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlgdean <[email protected]>2018-07-27 19:34:30 -0700
committerMark Otto <[email protected]>2018-07-27 19:34:30 -0700
commite53ab71d4bc6715e2de942800f6a5a25d0522c08 (patch)
treedad57e273d6d29c104d45b2fae428cbf274dc56a
parenta194abbb5aaa999f5c0eba4bba4f7aff6ab2d0ad (diff)
downloadbootstrap-e53ab71d4bc6715e2de942800f6a5a25d0522c08.tar.xz
bootstrap-e53ab71d4bc6715e2de942800f6a5a25d0522c08.zip
fix typo: seperator -> separator (#26982)
-rw-r--r--site/docs/4.1/components/breadcrumb.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/4.1/components/breadcrumb.md b/site/docs/4.1/components/breadcrumb.md
index 4cc7b3de9..0837e8363 100644
--- a/site/docs/4.1/components/breadcrumb.md
+++ b/site/docs/4.1/components/breadcrumb.md
@@ -33,7 +33,7 @@ group: components
## Changing the separator
-Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method) function is needed to generate the quotes around a string, so if you want `>` as seperator, you can use this:
+Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this:
```scss
$breadcrumb-divider: quote(">");