Skip to content

Commit

Permalink
Add semicolons and change values for example
Browse files Browse the repository at this point in the history
  • Loading branch information
lyzidiamond committed Jan 10, 2015
1 parent bd37ef5 commit 9c62fa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ var jsts = require('jsts');
* @return {FeatureCollection} a FeatureCollection containing {@link Polygon} features representing buffers
*
* @example
* var pt = turf.point(14.616599, -90.548630)
* var unit = 'miles'
* var pt = turf.point(-90.548630, 14.616599);
* var unit = 'miles';
*
* var buffered = turf.buffer(pt, 10, unit)
* var buffered = turf.buffer(pt, 500, unit);
*
* //=buffered
*/
Expand Down

0 comments on commit 9c62fa8

Please sign in to comment.