Skip to content

Commit 47ce695

Browse files
committed
small changes to Developer.md
1 parent d17fb5a commit 47ce695

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DEVELOPER.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Thanks for considering contributions to the ui-grid project. This doc will give you a jump start on the development standards we use.
66

77
# Code Structure
8-
The development goal of ui-grid (ng-grid 3.0) is a fast, testable, and extendable grid component.
8+
The development goal of ui-grid (ng-grid 3.0) is a fast, testable, and extensible grid component.
99

1010
The core angular module (ui.grid) provides the basics
1111
- Virtualization
@@ -22,7 +22,7 @@ Everything else should be added as new angular modules unless the grid team agre
2222
* feature folder is added below src/js
2323
* One js file per feature
2424
* no global variables
25-
* design and code the angular way. If you don't know what that is, then maybe you shouldn't be contributing to an angular project.
25+
* design and code the angular way. What do we main by that? Dependency injection, small directives, emphasis the model, not the DOM, tests!
2626
* feature.js contains an enclosure:
2727

2828
```javascript
@@ -50,7 +50,7 @@ Everything else should be added as new angular modules unless the grid team agre
5050
#####During Grid controller initialization
5151
Here you can do the following:
5252
######columnBuilder
53-
columnBuilder functions allow you to add your own properties / functions to each GridCol object. for
53+
ColumnBuilder functions allow you to add your own properties / functions to each GridCol object. for
5454
testing ease, it's best to create a service that returns the function. See ui.grid.edit unit tests on how to easily test your function
5555

5656
```javascript
@@ -72,7 +72,7 @@ testing ease, it's best to create a service that returns the function. See ui.g
7272
```
7373

7474
######rowBuilder
75-
rowBuilder functions allow you to add your own properties / functions to each GridRow object. Again, it's
75+
RowBuilder functions allow you to add your own properties / functions to each GridRow object. Again, it's
7676
best to implement function in a service. See ui.grid.edit unit tests on how to easily test your function
7777

7878
```javascript

0 commit comments

Comments
 (0)