Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 3e07731

Browse files
committed
docs(NgModelConverter): Edits for style.
1 parent 02ef344 commit 3e07731

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lib/directive/ng_model.dart

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
part of angular.directive;
22

33
/**
4-
* NgModelConverter is the class interface for performing transformations on
5-
* the viewValue and modelValue properties on a model. A new converter can be created
6-
* by implementing the NgModelConverter class and then attaching to a model via the
7-
* provided setter.
4+
* Class interface for performing transformations on the viewValue and modelValue properties on a model.
5+
*
6+
* A new converter can be created by implementing the NgModelConverter class and then attaching to
7+
* a model via the provided setter.
88
*/
99
abstract class NgModelConverter {
1010
String get name;
@@ -18,6 +18,7 @@ class _NoopModelConverter extends NgModelConverter {
1818

1919
/**
2020
* Ng-model directive is responsible for reading/writing to the model.
21+
*
2122
* The directive itself is headless. (It does not know how to render or what
2223
* events to listen for.) It is meant to be used with other directives which
2324
* provide the rendering and listening capabilities. The directive itself

0 commit comments

Comments
 (0)