Skip to content

Commit 42d047b

Browse files
nlitwinchrisvfritz
authored andcommitted
Fix code indentation (vuejs#1428)
1 parent 38f492e commit 42d047b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/cookbook/form-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ const app = new Vue({
143143
},
144144
validEmail:function(email) {
145145
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
146-
return re.test(email);
146+
return re.test(email);
147147
}
148148
}
149149
})

0 commit comments

Comments
 (0)