Skip to content

Commit 380a0e7

Browse files
committed
Unify the style of the list items
1 parent 6abc0be commit 380a0e7

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ development tools (e.g. Clojure editor plugins and IDEs).
1111

1212
Right now `orchard` provides functionality like:
1313

14-
* enhanced apropos
15-
* classpath utils (alternative for `java.classpath`)
16-
* value [inspector](https://github.com/clojure-emacs/orchard/blob/master/doc/inspector.org)
17-
* Java class handling utilities
18-
* utilities for dealing with metadata
19-
* namespace utilities
20-
* fetching ClojureDocs documentation
21-
* finding function dependencies (other functions invoked by a function) and usages
22-
* function tracer
23-
* simple function profiler
14+
- enhanced apropos
15+
- classpath utils (alternative for `java.classpath`)
16+
- value [inspector](https://github.com/clojure-emacs/orchard/blob/master/doc/inspector.org)
17+
- Java class handling utilities
18+
- utilities for dealing with metadata
19+
- namespace utilities
20+
- fetching ClojureDocs documentation
21+
- finding function dependencies (other functions invoked by a function) and usages
22+
- function tracer
23+
- simple function profiler
2424

2525
## Why?
2626

@@ -30,9 +30,9 @@ and altered in each and every tool.
3030

3131
Having a common tooling foundation typically means:
3232

33-
* Better foundation (e.g. more functionality, good documentation, etc) with more contributors
34-
* Less work for tool authors as they don't have to reinvent the wheel for every tool
35-
* Happier end users
33+
- Better foundation (e.g. more functionality, good documentation, etc) with more contributors
34+
- Less work for tool authors as they don't have to reinvent the wheel for every tool
35+
- Happier end users
3636

3737
## Design
3838

@@ -170,11 +170,11 @@ You can find a more in-depth explanation in this [post](https://lukas-domagala.d
170170

171171
The important implications from this are:
172172

173-
* very fast
174-
* functions marked with meta `:inline` will not be found (`inc`, `+`, ...)
175-
* redefining function vars that include lambdas will still return the dependencies of the old plus the new ones
176-
([explanation](https://lukas-domagala.de/blog/clojure-compiler-class-cache.html))
177-
* does not work on AoT compiled functions
173+
- very fast
174+
- functions marked with meta `:inline` will not be found (`inc`, `+`, ...)
175+
- redefining function vars that include lambdas will still return the dependencies of the old plus the new ones
176+
-[explanation](https://lukas-domagala.de/blog/clojure-compiler-class-cache.html))
177+
- does not work on AoT compiled functions
178178

179179
### Java 8 support
180180

0 commit comments

Comments
 (0)