From 3ce11ed58c7e8b7776773114ff3187e98d4f1211 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 Aug 2016 19:59:07 +0200 Subject: [PATCH] docs(pipes): update I18nSelectPipe API documentation (#10449) --- modules/@angular/common/src/pipes/i18n_select_pipe.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@angular/common/src/pipes/i18n_select_pipe.ts b/modules/@angular/common/src/pipes/i18n_select_pipe.ts index 048eab0bc5..3def3b1a81 100644 --- a/modules/@angular/common/src/pipes/i18n_select_pipe.ts +++ b/modules/@angular/common/src/pipes/i18n_select_pipe.ts @@ -31,8 +31,8 @@ import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception'; * class MyApp { * gender: string = 'male'; * inviteMap: any = { - * 'male': 'Invite her.', - * 'female': 'Invite him.', + * 'male': 'Invite him.', + * 'female': 'Invite her.', * 'other': 'Invite them.' * } * ...