summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco <firefelix@gmail.com>2016-09-14 15:25:28 +0300
committerFrancesco <firefelix@gmail.com>2016-09-14 15:25:28 +0300
commit2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1 (patch)
treec8046455a3087537dc29197b86cec40bdd3debaa
parent623aecec665ca868c8bfb69fe40a4618ec524258 (diff)
downloadreact-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.zip
react-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.tar.gz
react-autosize-textarea-2d5fbc381edf30aaeecca5bc01a0ecc7b8e495d1.tar.bz2
fix lint errors
-rw-r--r--src/TextareaAutosize.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TextareaAutosize.js b/src/TextareaAutosize.js
index f6e2c1d..b96bb63 100644
--- a/src/TextareaAutosize.js
+++ b/src/TextareaAutosize.js
@@ -11,7 +11,8 @@ export const Props = {
onResize: t.maybe(t.Function)
};
-/** A light replacement for built-in textarea component which automaticaly adjusts its height to match the content
+/** A light replacement for built-in textarea component
+ * which automaticaly adjusts its height to match the content
* @param onResize - called whenever the textarea resizes
*/
@props(Props, { strict: false })