Skip to content

Commit 97ad480

Browse files
authored
Fix link to TreeLog README
1 parent 4002f4f commit 97ad480

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

collections/_posts/2013-10-18-treelog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ There are a number of problems with this approach:
2323

2424
Treelog resolves these issues by making the log itself a tree, reflecting the computational tree it logs, and uses techniques described in the [Typeclassopedia](http://www.haskell.org/wikiupload/e/e9/Typeclassopedia.pdf) to bring logging closer to the computation: the `Writer` Monad, a Monad Transformer, and a cunning Monoid.
2525

26-
Note that this post is a more technical description of how Treelog was written. For a quick introduction of use please refer to the README.
26+
Note that this post is a more technical description of how Treelog was written. For a quick introduction of use please refer to the [README].
2727
I will also refer you to Eugene Yokota's [excellent Scalaz tutorial](http://eed3si9n.com/learning-scalaz/) to study the details of Scalaz where appropriate.
2828

2929
Logging with Treelog
@@ -87,7 +87,7 @@ Syntactic Sugar
8787

8888
Treelog makes use of some syntactic sugar inspired by [Tony Morris's post](http://blog.tmorris.net/posts/the-writer-monad-using-scala-example/) on `Writer`. In the example above, `~>` is a method on an implicitly constructed class which takes any value `x: T` and returns a `DescribedComputation[T]`, representing the value `x` and a leaf node containing the description.
8989

90-
There is special support for `Boolean`s, `Option`s, `Either`s and `Traversable`s which you can learn about from the Treelog README.
90+
There is special support for `Boolean`s, `Option`s, `Either`s and `Traversable`s which you can learn about from the Treelog [README].
9191

9292
`Writer` and Monoid
9393
-------------------
@@ -192,3 +192,6 @@ Further Reading
192192

193193
- [Monad Transformers in Scala](http://debasishg.blogspot.co.uk/2011/07/monad-transformers-in-scala.html)
194194
- [Monad Transformers in the Wild](http://www.slideshare.net/StackMob/monad-transformers-in-the-wild)
195+
196+
[README]: https://github.com/lancewalton/treelog/blob/main/README.md
197+

0 commit comments

Comments
 (0)