From 49ffaacb28fa5ff93b9714e74ff3f401d8faaaf9 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Thu, 9 Jan 2020 16:14:12 -0800 Subject: [PATCH] Tweak docs formatting in arrays.scad --- arrays.scad | 13 +++++++------ version.scad | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/arrays.scad b/arrays.scad index 595a115..bbac08b 100644 --- a/arrays.scad +++ b/arrays.scad @@ -5,15 +5,16 @@ // ``` // use // ``` -// -// # Terminology -// - **List**: An ordered collection of zero or more items. ie: ["a", "b", "c"] -// - **Vector**: A list of numbers. ie: [4, 5, 6] -// - **Array**: A nested list of lists, or list of lists of lists, or deeper. ie: [[2,3], [4,5], [6,7]] -// - **Dimension**: The depth of nesting of lists in an array. A List is 1D. A list of lists is 2D. etc. ////////////////////////////////////////////////////////////////////// +// Section: Terminology +// - **List**: An ordered collection of zero or more items. ie: `["a", "b", "c"]` +// - **Vector**: A list of numbers. ie: `[4, 5, 6]` +// - **Array**: A nested list of lists, or list of lists of lists, or deeper. ie: `[[2,3], [4,5], [6,7]]` +// - **Dimension**: The depth of nesting of lists in an array. A List is 1D. A list of lists is 2D. etc. + + // Section: List Query Operations diff --git a/version.scad b/version.scad index 8423c77..6d61aec 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,77]; +BOSL_VERSION = [2,0,78]; // Section: BOSL Library Version Functions