From c7fa461c043e2ae17c6ca13bc0629e15b4837a0e Mon Sep 17 00:00:00 2001 From: Coders Digest Date: Fri, 4 Mar 2016 20:25:05 +0800 Subject: [PATCH] Fixing minor typo for InitCapsPipe (was InitCapsPiep) closes #913 --- public/docs/ts/latest/testing/testing-an-angular-pipe.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/ts/latest/testing/testing-an-angular-pipe.jade b/public/docs/ts/latest/testing/testing-an-angular-pipe.jade index 9538a19500..15bf92ef5e 100644 --- a/public/docs/ts/latest/testing/testing-an-angular-pipe.jade +++ b/public/docs/ts/latest/testing/testing-an-angular-pipe.jade @@ -65,12 +65,12 @@ code-example(format="" language="html" escape="html"). :marked We are writing an Angular application afterall and we were going to need Angular sooner or later. That time has come. - The `InitCapsPiep` clearly depends on Angular as is clear in the first few lines: + The `InitCapsPipe` clearly depends on Angular as is clear in the first few lines: code-example(format=""). import {Pipe} from 'angular2/core'; @Pipe({ name: 'initCaps' }) - export class InitCapsPipe { + export class InitCapsPipe { ... } :marked **Open** `unit-tests.html` @@ -160,4 +160,4 @@ figure.image-display What about testing parts that *are themselves asynchronous*? Let's test a service with a public asynchronous method that fetches heroes - from a remote server. \ No newline at end of file + from a remote server.