chore(changelog): fix formatting for alpha.49

Closes #5732
This commit is contained in:
Dmitriy Shekhovtsov 2015-12-09 13:36:46 +02:00
parent 56a254e6a5
commit bf484b19b3
1 changed files with 13 additions and 6 deletions

View File

@ -65,10 +65,17 @@ Use `angular-polyfills.js` instead.
- instrumentation is exported as `ng.instrumentation`
- upgrade is exported as `ng.upgrade`
* Before:
* Form directives are exportedAs 'ngForm' (was 'form')
Before:
```html
<form #f="form">
After:
```
After:
```html
<form #f="ngForm">
```
<a name="2.0.0-alpha.48"></a>