Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit 8539856

Browse files
author
Diedrik De Mits
committed
docs(operators): modify jsbin example for the correct snapshot
The snapshot that needed to be shown was version 2 and not 1. To solve the issue for Travis (and the angular-cli not wanting to build) I have also updated the cli to the latest version in package.json
1 parent c7a44e3 commit 8539856

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"zone.js": "0.8.14"
4949
},
5050
"devDependencies": {
51-
"@angular/cli": "1.6.0",
51+
"@angular/cli": "1.6.5",
5252
"@angular/compiler-cli": "5.1.1",
5353
"@angular/language-service": "5.1.1",
5454
"@angular/service-worker": "5.1.1",

src/operator-docs/transformation/bufferTime.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ buffered.subscribe(x => console.log(x));
7676
},
7777
{
7878
name:
79-
'Every five seconds, emit the click events from the next two seconds',
79+
'Every five seconds, emit the click events from a window of the next two seconds',
8080
code: `
8181
import { fromEvent } from 'rxjs/observable/fromEvent';
8282
import { map, bufferTime } from 'rxjs/operators';
@@ -90,7 +90,7 @@ buffered.subscribe(x => console.log(x));
9090
`,
9191
externalLink: {
9292
platform: 'JSBin',
93-
url: 'http://jsbin.com/xohupot/1/embed?js,console,output'
93+
url: 'http://jsbin.com/xohupot/2/embed?js,console,output'
9494
}
9595
}
9696
],

0 commit comments

Comments
 (0)