Tweak docs formatting in arrays.scad

This commit is contained in:
Revar Desmera 2020-01-09 16:14:12 -08:00
parent 2f1760a342
commit 49ffaacb28
2 changed files with 8 additions and 7 deletions

View file

@ -5,15 +5,16 @@
// ```
// use <BOSL2/std.scad>
// ```
//
// # 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

View file

@ -8,7 +8,7 @@
//////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,77];
BOSL_VERSION = [2,0,78];
// Section: BOSL Library Version Functions