From da455049073f804379d5e3e6fc869049f2817f9e Mon Sep 17 00:00:00 2001 From: Tero Parviainen Date: Wed, 27 Apr 2016 16:45:21 +0300 Subject: [PATCH] docs(pipes): change description for parameters to reflect change in beta.16 closes #1197 --- public/docs/ts/latest/guide/pipes.jade | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/guide/pipes.jade b/public/docs/ts/latest/guide/pipes.jade index 0116e3e841..9ade0d8f51 100644 --- a/public/docs/ts/latest/guide/pipes.jade +++ b/public/docs/ts/latest/guide/pipes.jade @@ -125,9 +125,10 @@ figure.image-display * A pipe is a class decorated with pipe metadata. * The pipe class implements the `PipeTransform` interface's `transform` method that - accepts an input value and an optional array of parameters and returns the transformed value. + accepts an input value followed by optional parameters and returns the transformed value. - * There will be one item in the parameter array for each parameter passed to the pipe + * There will be one additional argument to the `transform` method for each parameter passed to the pipe. + Our pipe has one such parameter: The `exponent`. * We tell Angular that this is a pipe by applying the `@Pipe` decorator which we import from the core Angular library.