docs(pipes): update I18nSelectPipe API documentation (#10449)

This commit is contained in:
Michael 2016-08-02 19:59:07 +02:00 committed by Victor Berchet
parent 7db75fa361
commit 3ce11ed58c
1 changed files with 2 additions and 2 deletions

View File

@ -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.'
* }
* ...