aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bennet Veloya <[email protected]>2018-03-15 15:18:30 -0700
committerPatrick H. Lauke <[email protected]>2018-03-15 22:18:30 +0000
commitf194b9db751b9cfb187d895606ddc759e70bc472 (patch)
tree6ca80bb89672a540f101e1eb4c03a04511b4d888
parentb9577a1cf7277b7e7854c3b4ea009e2fed6ea242 (diff)
downloadbootstrap-f194b9db751b9cfb187d895606ddc759e70bc472.tar.xz
bootstrap-f194b9db751b9cfb187d895606ddc759e70bc472.zip
Fix order of Save/Close buttons in modal code example (#25855)
-rw-r--r--docs/4.0/components/modal.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/components/modal.md b/docs/4.0/components/modal.md
index dc67b5602..d4be8783a 100644
--- a/docs/4.0/components/modal.md
+++ b/docs/4.0/components/modal.md
@@ -67,8 +67,8 @@ Below is a _static_ modal example (meaning its `position` and `display` have bee
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer">
- <button type="button" class="btn btn-primary">Save changes</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
+ <button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>