Skip to content

Commit

Permalink
There was a missing closing bracket in the code example. (Automattic#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bisko authored Mar 7, 2017
1 parent be13419 commit 886a263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/drop-zone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class MyComponent extends Component {
onFilesDrop( files ) {
console.log( 'You dropped some files: %s', files.map( function( file ) {
return file.name;
}.join( ', ' ) );
}.join( ', ' ) ) );
}

render() {
Expand Down

0 comments on commit 886a263

Please sign in to comment.