Skip to content

Commit bf2d206

Browse files
author
Kuldeep Saxena
authored
Update GettingStarted.md
1 parent 0760677 commit bf2d206

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/GettingStarted.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The above example will create an instance of [FormGroup](FormGroup.md) class whi
6363

6464

6565
### step2: Connect form with component
66-
This steps is not needed if you're using dynamic controls but if you want a better control over your form state then you should do that, if your controls are dynamic then you can also initalize the empty group control and add the controls later.
66+
This step is not needed if you're using dynamic controls but if you want a better control over your form state then you should do that, if your controls are dynamic then you can also initalize the empty group control and add the controls later.
6767
Example:
6868

6969
```js
@@ -154,7 +154,7 @@ export default class Login extends Component {
154154
### Add Listeners
155155

156156
You can add subscriptions for listening the state changes in form.
157-
There are a total of five observables available currently:
157+
There are a total of five observables available now:
158158

159159
#### valueChanges
160160
Emits an event every time when the control's value changes.
@@ -164,7 +164,7 @@ Emits an event every time when the control's state(value, touched, ...) changes.
164164
Emits an event every time when the control's status(PENDING, INVALID, VALID, DISABLED) changes.
165165
#### onValueChanges
166166
Emits an event every time when the control's value is changed by onChange event i.e by user.
167-
#### onBlurChnages
167+
#### onBlurChanges
168168
Emits an event every time when a blur event triggers on a control.
169169

170170
You can use these listeners to modify the form state dynamically based on the value of other controls.

0 commit comments

Comments
 (0)