]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix typo: seperator -> separator (#26982)
authorlgdean <lgdean@users.noreply.github.com>
Sat, 28 Jul 2018 02:34:30 +0000 (19:34 -0700)
committerMark Otto <otto@github.com>
Sat, 28 Jul 2018 02:34:30 +0000 (19:34 -0700)
site/docs/4.1/components/breadcrumb.md

index 4cc7b3de9344f07674b1d0026f15e101ff44f9b7..0837e83633da3d735d1590ecbc4cb1b69f3c49bb 100644 (file)
@@ -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(">");