Commit 4ef7c524 4ef7c524760fdcafe64189a00f1bc85c349b6e44 by Vincent Peybernes

Update README.md

1 parent 6a856a9c
Pipeline #72 for 4ef7c524 passed in 1 minute 17 seconds
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 2
3 [![build status](http://gitlab.techniv.fr/Techniv/angular-matrix-validation/badges/master/build.svg)](http://gitlab.techniv.fr/Techniv/angular-matrix-validation/commits/master) 3 [![build status](http://gitlab.techniv.fr/Techniv/angular-matrix-validation/badges/master/build.svg)](http://gitlab.techniv.fr/Techniv/angular-matrix-validation/commits/master)
4 4
5 This module provide an addon directive for form to validate matrix form. 5 This module provides an addon directive for form to validate matrix forms.
6 6
7 ## Example 7 ## Example
8 8
...@@ -45,9 +45,9 @@ angular.module('test', ['matrixValidation']).controller('ctrlTest', [ ...@@ -45,9 +45,9 @@ angular.module('test', ['matrixValidation']).controller('ctrlTest', [
45 // Do something to fill validationMatrix with true/false 45 // Do something to fill validationMatrix with true/false
46 // to validate matrix. 46 // to validate matrix.
47 47
48 // validationMatrix is give to help you to construct it. 48 // validationMatrix is given to help you to construct it.
49 // It have the same dimension than matrix. 49 // It has the same dimension than matrix.
50 // But you to return it. 50 // But you need to return it.
51 return validationMatrix; 51 return validationMatrix;
52 }; 52 };
53 } 53 }
......