From 86caa14eadb2a044f036ccf922008f9df76030f4 Mon Sep 17 00:00:00 2001 From: hkRho <42980938+hkRho@users.noreply.github.com> Date: Sat, 16 Feb 2019 23:23:16 -0500 Subject: [PATCH] Added comma to line 48 (#31604) --- guide/english/bootstrap/collapse/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/bootstrap/collapse/index.md b/guide/english/bootstrap/collapse/index.md index 8b5ea0fd54d..509e1a5f63b 100644 --- a/guide/english/bootstrap/collapse/index.md +++ b/guide/english/bootstrap/collapse/index.md @@ -47,7 +47,7 @@ The element to collapse must contain the class `.collapse`. ``` -In the example above we use a button and an anchor tag to control a div element. The button and anchor which are the controlling elements need two things, an attribute to specify that the controlling element is for collapsing and another attribute to specify which element it controls (hides or reveals). +In the example above, we use a button and an anchor tag to control a div element. The button and anchor which are the controlling elements need two things, an attribute to specify that the controlling element is for collapsing and another attribute to specify which element it controls (hides or reveals). They both have a *data-toggle* attribute with the value *collapse* which specify that they are to be used for collapsing an element. The anchor tag uses a *href* attribute to specify the element it controls, while the button uses a *data-target* attribute to specify the element it controls.