Skip to content

Commit

Permalink
Indentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed Jan 31, 2017
1 parent 19a6acc commit 9a677c2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Creatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ const Creatable = React.createClass({
// ({ option: Object, options: Array, labelKey: string, valueKey: string }): boolean
isOptionUnique: React.PropTypes.func,

// Determines if the current input text represents a valid option.
// ({ label: string }): boolean
isValidNewOption: React.PropTypes.func,
// Determines if the current input text represents a valid option.
// ({ label: string }): boolean
isValidNewOption: React.PropTypes.func,

// See Select.propTypes.menuRenderer
menuRenderer: React.PropTypes.any,

// Factory to create new option.
// ({ label: string, labelKey: string, valueKey: string }): Object
// Factory to create new option.
// ({ label: string, labelKey: string, valueKey: string }): Object
newOptionCreator: React.PropTypes.func,

// input change handler: function (inputValue) {}
Expand All @@ -43,8 +43,8 @@ const Creatable = React.createClass({
// See Select.propTypes.options
options: React.PropTypes.array,

// Creates prompt/placeholder option text.
// (filterText: string): string
// Creates prompt/placeholder option text.
// (filterText: string): string
promptTextCreator: React.PropTypes.func,

// Decides if a keyDown event (eg its `keyCode`) should result in the creation of a new option.
Expand Down

0 comments on commit 9a677c2

Please sign in to comment.