From 9b9e0bcec8c6d2b5a5e820c9187ede9ac51398bf Mon Sep 17 00:00:00 2001
From: Revar Desmera <revarbat@gmail.com>
Date: Sat, 7 Mar 2020 16:36:26 -0800
Subject: [PATCH] Fixed error in smooth_path() example formatting.

---
 rounding.scad | 3 +--
 version.scad  | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/rounding.scad b/rounding.scad
index 2ccf7a2..68c5708 100644
--- a/rounding.scad
+++ b/rounding.scad
@@ -435,8 +435,7 @@ function _rounding_offsets(edgespec,z_dir=1) =
 // Example(2D): A more interesting shape:
 //   path = [[0,0], [4,0], [7,14], [-3,12]];
 //   polygon(smooth_path(path,closed=true));
-// Example(2D): Scaling the tangent data using the curvature parameter k can decrease or increase the amount of smoothing.  Note this is the same
-//   as just multiplying the deriv(square(4)) by k.
+// Example(2D): Scaling the tangent data using the curvature parameter k can decrease or increase the amount of smoothing.  Note this is the same as just multiplying the deriv(square(4)) by k.
 //   polygon(smooth_path(square(4), k=0.5,closed=true));
 // Example(2D): Or you can specify your own tangent values to alter the shape of the curve
 //   polygon(smooth_path(square(4),tangents=1.25*[[-2,-1], [-2,1], [1,2], [2,-1]],closed=true));
diff --git a/version.scad b/version.scad
index 54588eb..3f3d3d1 100644
--- a/version.scad
+++ b/version.scad
@@ -8,7 +8,7 @@
 //////////////////////////////////////////////////////////////////////
 
 
-BOSL_VERSION = [2,0,165];
+BOSL_VERSION = [2,0,166];
 
 
 // Section: BOSL Library Version Functions