Skip to content

Commit

Permalink
Merge pull request #1 from DannyFeliz/patch-1
Browse files Browse the repository at this point in the history
Fix typo in min validation message
  • Loading branch information
diegoulloao authored Feb 12, 2021
2 parents 10dbdec + f21ee4e commit e4ea365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const mixed = {
};
export const string = {
length: '${path} debe ser exactamente ${length} caracteres',
min: '${path} debe ser de al menos ${min}caracteres',
min: '${path} debe ser de al menos ${min} caracteres',
max: '${path} debe ser como máximo ${max} caracteres',
matches: '${path} debe coincidir con el siguiente: "${regex}"',
email: '${path} debe ser un correo electrónico válido',
Expand Down Expand Up @@ -58,4 +58,4 @@ export const object = {
export const array = {
min: '${path} campo debe tener al menos ${min} elementos',
max: '${path} campo debe tener menos de o igual a ${max} elementos',
};
};

0 comments on commit e4ea365

Please sign in to comment.