From dd28a230f2aa758e8a998ed99f86db34ae754f5b Mon Sep 17 00:00:00 2001 From: Schneider Werner-Walter Date: Sun, 21 Jan 2018 19:09:46 +0200 Subject: [PATCH] Updated RxJS coding standard to reflect the change to pipeable operators. --- CODING_STANDARDS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_STANDARDS.md b/CODING_STANDARDS.md index e0b9da487df4..46864971d97a 100644 --- a/CODING_STANDARDS.md +++ b/CODING_STANDARDS.md @@ -127,7 +127,7 @@ class ConfigBuilder { ``` #### RxJS -When dealing with RxJS operators, import the lettable operator (e.g. +When dealing with RxJS operators, import the pipeable operator (e.g. `import {map} from 'rxjs/operators/map'`), as opposed to using the "patch" imports which pollute the user's global Observable object (e.g. `import 'rxjs/add/operator/map'`):