Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Sep 1, 2024
1 parent d8d0b17 commit a0285d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/content/docs/examples/reactive-forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ export class AppComponent implements OnInit, OnDestroy {
import { Validators } from 'ngx-editor';

Validators.required(schema); // pass schema if you are using a custom schema else leave it empty
Validators.maxLength(maxLenght, schema);
Validators.minLength(minLenght, schema);
Validators.maxLength(maxLength, schema);
Validators.minLength(minLength, schema);
```

### Enable or disable the editor via Forms API
Expand Down

0 comments on commit a0285d3

Please sign in to comment.