From 1f54040ef4c447865284da0fd6e762eb92eaeb81 Mon Sep 17 00:00:00 2001 From: Matthew Hegarty Date: Tue, 24 Jan 2017 18:21:59 +0000 Subject: [PATCH] docs(common): fix a typo on the DatePipe API docs (#14060) --- modules/@angular/common/src/pipes/date_pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/common/src/pipes/date_pipe.ts b/modules/@angular/common/src/pipes/date_pipe.ts index 874c2eaf3d..ef32b3b013 100644 --- a/modules/@angular/common/src/pipes/date_pipe.ts +++ b/modules/@angular/common/src/pipes/date_pipe.ts @@ -24,7 +24,7 @@ import {InvalidPipeArgumentError} from './invalid_pipe_argument_error'; * Where: * - `expression` is a date object or a number (milliseconds since UTC epoch) or an ISO string * (https://www.w3.org/TR/NOTE-datetime). - * - `format` indicates which date/time components to include. The format can be predifined as + * - `format` indicates which date/time components to include. The format can be predefined as * shown below or custom as shown in the table. * - `'medium'`: equivalent to `'yMMMdjms'` (e.g. `Sep 3, 2010, 12:05:08 PM` for `en-US`) * - `'short'`: equivalent to `'yMdjm'` (e.g. `9/3/2010, 12:05 PM` for `en-US`)