Skip to content

Commit

Permalink
Merge pull request #108 from glorious-codes/copy_improvements
Browse files Browse the repository at this point in the history
Improve documentation copy for input and select
  • Loading branch information
rafaelcamargo committed Oct 2, 2021
2 parents aaef6a3 + 8c69c6f commit bdd1e7d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/react/components/input/input.doc.js
Expand Up @@ -147,7 +147,7 @@ module.exports = {
return function(){
const validations = [{
isValid: data => (!data || data.toLowerCase() == 'javascript'),
errorMessage: 'Please, enter a cooler one'
errorMessage: 'Please, enter a funnier one'
}];

return (
Expand Down
2 changes: 1 addition & 1 deletion src/react/components/select/select.doc.js
Expand Up @@ -65,7 +65,7 @@ module.exports = {
return function(){
const validations = [{
isValid: data => (!data || data.toLowerCase() == 'javascript'),
errorMessage: 'Please, enter a cooler one'
errorMessage: 'Please, enter a funnier one'
}]

return (
Expand Down
2 changes: 1 addition & 1 deletion src/vue/components/input/input.doc.js
Expand Up @@ -132,7 +132,7 @@ module.exports = {
return {
validations: [{
isValid: data => (!data || data.toLowerCase() == 'javascript'),
errorMessage: 'Please, enter a cooler one'
errorMessage: 'Please, enter a funnier one'
}]
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/vue/components/select/select.doc.js
Expand Up @@ -109,7 +109,7 @@ module.exports = {
return {
validations: [{
isValid: data => (!data || data.toLowerCase() == 'javascript'),
errorMessage: 'Please, enter a cooler one'
errorMessage: 'Please, enter a funnier one'
}]
};
}
Expand Down

0 comments on commit bdd1e7d

Please sign in to comment.