@@ -122,7 +122,7 @@ Vertically align function (macro) arguments spanning multiple lines.
122122 (range 1 10))
123123----
124124
125- === One Space Indent [[one-space-indent]]
125+ === Arguments Indentation [[one-space-indent]]
126126
127127Use a single space indentation for function (macro) arguments
128128when there are no arguments on the same line as the function name.
@@ -2091,7 +2091,7 @@ with `deftest` and name them `something-test`.
20912091
20922092== Library Organization
20932093
2094- === Lib Coordinates [[lib-coordinates]]
2094+ === Coordinates [[lib-coordinates]]
20952095
20962096If you are publishing libraries to be used by others, make sure to
20972097follow the http://central.sonatype.org/pages/choosing-your-coordinates.html[Central Repository
@@ -2100,13 +2100,13 @@ for choosing your `groupId` and `artifactId`. This helps to prevent
21002100name conflicts and facilitates the widest possible use. A good
21012101example is https://github.com/stuartsierra/component[Component].
21022102
2103- === Lib Min Dependencies [[lib-min-dependencies]]
2103+ === Minimize Dependencies [[lib-min-dependencies]]
21042104
21052105Avoid unnecessary dependencies. For example, a three-line utility
21062106function copied into a project is usually better than a dependency
21072107that drags in hundreds of vars you do not plan to use.
21082108
2109- === Lib Core Separate From Tools [[lib-core-separate-from-tools]]
2109+ === Tool-agnostic [[lib-core-separate-from-tools]]
21102110
21112111Deliver core functionality and integration points in separate
21122112artifacts. That way, consumers can consume your library without
0 commit comments