| Index: src/site/_includes/language-tour/control-flow/index.markdown
|
| diff --git a/src/site/_includes/language-tour/control-flow/index.markdown b/src/site/_includes/language-tour/control-flow/index.markdown
|
| index 4cf06439a2d99f964abe01b4f028f3a1e15629c1..a7529710dc59d448aaa58b2354d1873f7f973133 100644
|
| --- a/src/site/_includes/language-tour/control-flow/index.markdown
|
| +++ b/src/site/_includes/language-tour/control-flow/index.markdown
|
| @@ -193,9 +193,12 @@ assert(number < 100); // Make sure the value is less than 100.
|
| assert(urlString.startsWith('https')); // Make sure this is an HTTPS URL.
|
| {% endhighlight %}
|
|
|
| -<aside class="note" markdown="1">
|
| - **Important:** Assert statements work only in checked mode.
|
| - They have no effect in production mode.
|
| +<aside>
|
| + <div class="alert alert-info">
|
| + <strong>Tip:</strong>
|
| + Assert statements work only in checked mode.
|
| + They have no effect in production mode.
|
| + </div>
|
| </aside>
|
|
|
| Inside the parentheses, you can put any expression
|
|
|