From e53ab71d4bc6715e2de942800f6a5a25d0522c08 Mon Sep 17 00:00:00 2001 From: lgdean Date: Fri, 27 Jul 2018 19:34:30 -0700 Subject: [PATCH] fix typo: seperator -> separator (#26982) --- site/docs/4.1/components/breadcrumb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/4.1/components/breadcrumb.md b/site/docs/4.1/components/breadcrumb.md index 4cc7b3de93..0837e83633 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(">");