From 4aaae3eadaaf09768c5b71008fe3eb2d82969291 Mon Sep 17 00:00:00 2001 From: Trotyl Yu Date: Fri, 21 Oct 2016 22:47:44 +0530 Subject: [PATCH] docs(common): fix a typo in ngStyle API docs --- modules/@angular/common/src/directives/ng_style.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/common/src/directives/ng_style.ts b/modules/@angular/common/src/directives/ng_style.ts index 26a5794808..ed1a21d12b 100644 --- a/modules/@angular/common/src/directives/ng_style.ts +++ b/modules/@angular/common/src/directives/ng_style.ts @@ -25,7 +25,7 @@ import {Directive, DoCheck, ElementRef, Input, KeyValueChangeRecord, KeyValueDif * @description * * The styles are updated according to the value of the expression evaluation: - * - keys are style names with an option `.` suffix (ie 'top.px', 'font-style.em'), + * - keys are style names with an optional `.` suffix (ie 'top.px', 'font-style.em'), * - values are the values assigned to those properties (expressed in the given unit). * * @stable