From 8bd058bb46c00ff0d18ca17d746314ec6bbe2265 Mon Sep 17 00:00:00 2001 From: Tristan H Date: Thu, 8 Jun 2017 13:32:08 +0100 Subject: [PATCH] fix typo in distinctuntilchanged.md --- doc/api/core/operators/distinctuntilchanged.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/core/operators/distinctuntilchanged.md b/doc/api/core/operators/distinctuntilchanged.md index 7b2e58c77..ff940c2a0 100644 --- a/doc/api/core/operators/distinctuntilchanged.md +++ b/doc/api/core/operators/distinctuntilchanged.md @@ -66,7 +66,7 @@ var subscription = source.subscribe( }); // => Next: { value: 42 } -// => Next: { value: 42 } +// => Next: { value: 24 } // => Completed ```