Skip to content

Commit b776d19

Browse files
committed
Fix skunk doc link in cover page
1 parent 87fe6be commit b776d19

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

site/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
- I/O (networking, files) computations in constant memory
88
- Stateful transformations
99
- Resource safety and effect evaluation
10-
- Built on [Cats Effect](https://typelevel.org/cats-effect/) and powers [http4s](https://http4s.org), [skunk](https://tpolecat.github.io/skunk/), and [doobie](https://tpolecat.github.io/doobie/)
10+
- Built on [Cats Effect](https://typelevel.org/cats-effect/) and powers [http4s](https://http4s.org), [skunk](https://typelevel.org/skunk/), and [doobie](https://tpolecat.github.io/doobie/)
1111

1212
[Get Started](getstarted/install.md)

site/documentation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,3 @@ Since Haskell is the purely functional lazily-evaluated programming language _pa
7474
### Older References ###
7575

7676
The Github page for [Additional resources](https://github.com/functional-streams-for-scala/fs2/wiki/Additional-Resources) lists some of the references above and several older ones, mostly from the `scalaz-stream` days.
77-
78-

site/scodec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scodec
1+
# Scodec
22

33
The `fs2-scodec` library provides the ability to do streaming binary encoding and decoding, powered by [scodec](https://github.com/scodec/scodec). It was originally called [scodec-stream](https://github.com/scodec/scodec-stream) and released independently for many years before being imported in to fs2.
44

@@ -28,4 +28,4 @@ object Decode extends IOApp.Simple {
2828

2929
When run, this program will incrementally read chunks from "largefile.bin", then decode a stream of frames, where each frame is expected to begin with a number of bytes specified as a 32-bit signed int (the `int32` codec), followed by a frame payload of that many bytes.
3030

31-
This library provides two main types: `StreamDecoder` and `StreamEncoder`. Each have various constructors and combinators to build instances up from regular scodec `Decoder` and `Encoder` values. Once built, they are typically converted to pipes via the `toPipeByte` method. In the example above, the `frames` decoder is converted to a `Pipe[IO, Byte, ByteVector]`.
31+
This library provides two main types: `StreamDecoder` and `StreamEncoder`. Each have various constructors and combinators to build instances up from regular scodec `Decoder` and `Encoder` values. Once built, they are typically converted to pipes via the `toPipeByte` method. In the example above, the `frames` decoder is converted to a `Pipe[IO, Byte, ByteVector]`.

0 commit comments

Comments
 (0)