Skip to content

Commit 8f8c0c8

Browse files
committed
A couple fixes to the "Post process function" section of the docs.
1 parent 76d9033 commit 8f8c0c8

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)