git.fiddlerwoaroof.com
Browse code

chore(readme): demote headings

Edward Langley authored on 26/03/2022 06:23:05
Showing 1 changed files
... ...
@@ -5,7 +5,7 @@
5 5
 
6 6
 [[https://www.npmjs.com/package/js-generic-functions][https://img.shields.io/npm/v/js-generic-functions.svg]] [[https://circleci.com/gh/fiddlerwoaroof/js-generic-functions.svg?style=svg]]
7 7
 
8
-* What is this?
8
+** What is this?
9 9
 
10 10
 
11 11
 An implementation of generic functions based on CLOS and the protocols
... ...
@@ -16,9 +16,9 @@ https://github.com/sbcl/specializable). For the moment, this is only
16 16
 used to provide a Shape specializer, as the details of the interaction
17 17
 between such specializers and subtyping are an open question.
18 18
 
19
-* Docs
19
+** Docs
20 20
 
21
-** Basic Usage
21
+*** Basic Usage
22 22
 
23 23
 #+NAME: imports
24 24
 #+BEGIN_SRC js
... ...
@@ -66,7 +66,7 @@ you can add methods like so:
66 66
   expect(example1({}, "world")).toEqual([4, "world"]);
67 67
 #+END_SRC
68 68
 
69
-** Other sorts of specializers
69
+*** Other sorts of specializers
70 70
 #+NAME: specializer-import
71 71
 #+BEGIN_SRC js
72 72
   import { Shape, Eql } from "./genfuns.js";