Skip to content

Commit ec812dc

Browse files
authored
Replace ellipsis Unicode symbol with three dots. (#31774)
1 parent c30b6df commit ec812dc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scss/_functions.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
114114
}
115115
}
116116

117-
@warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}";
117+
@warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}...";
118118

119119
@return $max-ratio-color;
120120
}

site/content/docs/5.0/components/alerts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ Bootstrap's alert plugin exposes a few events for hooking into alert functionali
177177
{{< highlight js >}}
178178
var myAlert = document.getElementById('myAlert')
179179
myAlert.addEventListener('closed.bs.alert', function () {
180-
// do something for instance, explicitly move focus to the most appropriate element,
180+
// do something, for instance, explicitly move focus to the most appropriate element,
181181
// so it doesn't get lost/reset to the start of the page
182-
// document.getElementById('').focus()
182+
// document.getElementById('...').focus()
183183
})
184184
{{< /highlight >}}

0 commit comments

Comments
 (0)