From 0006a549f5a48b373344c8ae91abbfab2684b56f Mon Sep 17 00:00:00 2001 From: frits-v <4488681+frits-v@users.noreply.github.com> Date: Fri, 13 May 2022 11:26:16 -0700 Subject: [PATCH 1/2] Update README.md typo for AppendFile short description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f273c93..813d58c 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ Sinks are methods that return some data from a pipe, ending the pipeline and ext | Sink | Destination | Results | | ---- | ----------- | ------- | -| [`AppendFile`](https://pkg.go.dev/github.com/bitfield/script#Pipe.AppendFile) | appended to file, creating if it exists | bytes written, error | +| [`AppendFile`](https://pkg.go.dev/github.com/bitfield/script#Pipe.AppendFile) | appended to file, creating if it doesn't exists | bytes written, error | | [`Bytes`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Bytes) | | data as `[]byte`, error | [`CountLines`](https://pkg.go.dev/github.com/bitfield/script#Pipe.CountLines) | |number of lines, error | | [`Read`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Read) | given `[]byte` | bytes read, error | From a26d07570513d67ed23f78cc24a944b9cff5fee6 Mon Sep 17 00:00:00 2001 From: John Arundel Date: Thu, 2 Jun 2022 12:06:17 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 813d58c..5322d38 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ Sinks are methods that return some data from a pipe, ending the pipeline and ext | Sink | Destination | Results | | ---- | ----------- | ------- | -| [`AppendFile`](https://pkg.go.dev/github.com/bitfield/script#Pipe.AppendFile) | appended to file, creating if it doesn't exists | bytes written, error | +| [`AppendFile`](https://pkg.go.dev/github.com/bitfield/script#Pipe.AppendFile) | appended to file, creating if it doesn't exist | bytes written, error | | [`Bytes`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Bytes) | | data as `[]byte`, error | [`CountLines`](https://pkg.go.dev/github.com/bitfield/script#Pipe.CountLines) | |number of lines, error | | [`Read`](https://pkg.go.dev/github.com/bitfield/script#Pipe.Read) | given `[]byte` | bytes read, error |