Skip to content

Commit adec918

Browse files
committed
Fix missing backticks and stray characters in caption in built-in-effects article. Closes jquery#130
1 parent f7bad6b commit adec918

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

page/effects/built-in-effects.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ whether the elements are currently visible.
3939
```
4040
// A basic use of a built-in effect
4141
$('h1').show();
42+
```
4243

4344
### Changing the Duration of Built-in Effects
4445

@@ -47,7 +48,7 @@ are animated over the course of 400ms by default. Changing the duration of an
4748
effect is simple.
4849

4950
```
50-
// Setting the duration of an effect">
51+
// Setting the duration of an effect
5152
$('h1').fadeIn(300); // fade in over 300ms
5253
$('h1').fadeOut('slow'); // using a built-in speed definition
5354
```
@@ -71,7 +72,7 @@ change the default duration of effects, or you may want to create your own
7172
effects speed.
7273

7374
```
74-
// Augmenting `jQuery.fx.speeds` with custom speed definitions">
75+
// Augmenting `jQuery.fx.speeds` with custom speed definitions
7576
jQuery.fx.speeds.blazing = 100;
7677
jQuery.fx.speeds.turtle = 2000;
7778
```
@@ -88,7 +89,7 @@ refers to the element that the effect was called on; as we did inside of event
8889
handler functions, we can turn it into a jQuery object via $(this).
8990

9091
```
91-
// Running code when an animation is complete">
92+
// Running code when an animation is complete
9293
$('div.old').fadeOut(300, function() { $(this).remove(); });
9394
```
9495

0 commit comments

Comments
 (0)