Skip to content

Commit f860cdd

Browse files
committed
Merge pull request #13 from EagerIO/docs-post-process-function-tweak
A couple fixes to the "Post process function" section of the docs
2 parents b1fb67d + 8f8c0c8 commit f860cdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,9 @@ before it's rendered, and should return a form.
474474

475475
Ex. Reverse all forms
476476
```javascript
477-
angular.module('myModule').config(function(schemaFormProvider){
477+
angular.module('myModule', ['schemaForm']).config(function(schemaFormProvider){
478478

479-
schemaForm.postProcess(function(form){
479+
schemaFormProvider.postProcess(function(form){
480480
form.reverse();
481481
return form;
482482
})

0 commit comments

Comments
 (0)