]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix flex order generated code and a typo.
authorXhmikosR <xhmikosr@gmail.com>
Wed, 9 Aug 2017 15:09:28 +0000 (18:09 +0300)
committerMark Otto <markd.otto@gmail.com>
Wed, 9 Aug 2017 15:29:52 +0000 (08:29 -0700)
docs/4.0/utilities/flex.md

index 4bc5996fb5ebc60b11423fa1ab40b38ab8a7bb8d..1d28fab6dddb65b10de16e9ab05feefae0ff9837 100644 (file)
@@ -357,17 +357,14 @@ Change the _visual_ order of specific flex items with a handful of `order` utili
 
 Responsive variations also exist for `order`.
 
-{% for bp in site.data.breakpoints %}
-  {% for i in (1..12) %}
-  - `.order{{ bp.abbr }}-{{ i }}`
-  {% endfor %}
-{% endfor %}
+{% for bp in site.data.breakpoints %}{% for i in (1..12) %}
+- `.order{{ bp.abbr }}-{{ i }}`{% endfor %}{% endfor %}
 
 ## Align content
 
 Use `align-content` utilities on flexbox containers to align flex items *together* on the cross axis. Choose from `start` (browser default), `end`, `center`, `between`, `around`, or `stretch`. To demonstrate these utilities, we've enforced `flex-wrap: wrap` and increased the number of flex items.
 
-**Heads up!** This property has no affect on single rows of flex items.
+**Heads up!** This property has no effect on single rows of flex items.
 
 <div class="bd-example">
   <div class="d-flex align-content-start flex-wrap bd-highlight mb-3" style="height: 200px">