aboutsummaryrefslogtreecommitdiff
path: root/docs/4.1/components
diff options
context:
space:
mode:
authorSwardu <[email protected]>2018-04-12 12:56:33 +0200
committerPatrick H. Lauke <[email protected]>2018-04-12 11:56:33 +0100
commitc3caf7ee4e1e6403169ec36e1b1bef36f894c16a (patch)
tree40575fd4d35c1933b78925cd935e27336b19fde7 /docs/4.1/components
parent418fd76ba97358730e4ae7fd28f73dbb5e275fbd (diff)
downloadbootstrap-c3caf7ee4e1e6403169ec36e1b1bef36f894c16a.tar.xz
bootstrap-c3caf7ee4e1e6403169ec36e1b1bef36f894c16a.zip
Docs/examples: change links to Sass documentation and example.com to https
Diffstat (limited to 'docs/4.1/components')
-rw-r--r--docs/4.1/components/breadcrumb.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.1/components/breadcrumb.md b/docs/4.1/components/breadcrumb.md
index 6a64c1285..5324c40f8 100644
--- a/docs/4.1/components/breadcrumb.md
+++ b/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](http://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 seperator, you can use this:
```scss
$breadcrumb-divider: quote(">");