From 196ca2c0557e6e11c08d2a884f1214702ac08756 Mon Sep 17 00:00:00 2001
From: Revar Desmera <revarbat@gmail.com>
Date: Sun, 3 May 2020 19:11:08 -0700
Subject: [PATCH] Typo fix in triangle_area()

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

diff --git a/geometry.scad b/geometry.scad
index a86b3b5..e142de9 100644
--- a/geometry.scad
+++ b/geometry.scad
@@ -546,7 +546,7 @@ function adj_opp_to_ang(adj,opp) =
 //   triangle_area(a,b,c);
 // Description:
 //   Returns the area of a triangle formed between three 2D or 3D vertices.
-//   Result will be negative if the points are 2D and in in clockwise order.
+//   Result will be negative if the points are 2D and in clockwise order.
 // Examples:
 //   triangle_area([0,0], [5,10], [10,0]);  // Returns -50
 //   triangle_area([10,0], [5,10], [0,0]);  // Returns 50
diff --git a/version.scad b/version.scad
index 8e5e217..761bbd3 100644
--- a/version.scad
+++ b/version.scad
@@ -8,7 +8,7 @@
 //////////////////////////////////////////////////////////////////////
 
 
-BOSL_VERSION = [2,0,286];
+BOSL_VERSION = [2,0,287];
 
 
 // Section: BOSL Library Version Functions