Skip to content

Commit

Permalink
docs(map): remove extra every (#2528)
Browse files Browse the repository at this point in the history
  • Loading branch information
otolol authored and kwonoj committed Apr 11, 2017
1 parent ee1ce30 commit dc2e7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { Observable } from '../Observable';
* applies a projection to each value and emits that projection in the output
* Observable.
*
* @example <caption>Map every every click to the clientX position of that click</caption>
* @example <caption>Map every click to the clientX position of that click</caption>
* var clicks = Rx.Observable.fromEvent(document, 'click');
* var positions = clicks.map(ev => ev.clientX);
* positions.subscribe(x => console.log(x));
Expand Down

0 comments on commit dc2e7f1

Please sign in to comment.