Skip to content

Commit b64a143

Browse files
committed
[docs] Fix type in description param for SnackPlayer
1 parent 2514c81 commit b64a143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/core/SnackPlayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var SnackPlayer = React.createClass({
5252
var platform = params.platform ? params.platform : 'ios';
5353
var name = params.name ? decodeURIComponent(params.name) : 'Example';
5454
var description = params.description
55-
? decoreURIComponent(params.description)
55+
? decodeURIComponent(params.description)
5656
: 'Example usage';
5757

5858
var optionalProps = {};

0 commit comments

Comments
 (0)