From e717cee6c561891a5de2836821d793086806db9b Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Fri, 30 Apr 2021 04:16:02 +0200 Subject: update docs --- skate/zipkey/zipkey.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'skate/zipkey') diff --git a/skate/zipkey/zipkey.go b/skate/zipkey/zipkey.go index a9f5c04..9394734 100644 --- a/skate/zipkey/zipkey.go +++ b/skate/zipkey/zipkey.go @@ -14,7 +14,7 @@ type Group struct { } type ( - keyFunc func(string) (string, error) + keyFunc func(string) (string, error) // Given a line, extract the key. groupFunc func(*Group) error ) -- cgit v1.2.3 From 55647ea29aff9a942816e7d858c37d7e37e598da Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sat, 1 May 2021 01:19:49 +0200 Subject: update docs --- skate/cmd/skate-dot/main.go | 4 ++-- skate/zipkey/zipkey.go | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'skate/zipkey') diff --git a/skate/cmd/skate-dot/main.go b/skate/cmd/skate-dot/main.go index 3ef99d5..5c11975 100644 --- a/skate/cmd/skate-dot/main.go +++ b/skate/cmd/skate-dot/main.go @@ -1,5 +1,5 @@ -// skate-dot generates dot files from inbound and outbound citation links. Just -// a demo, replacement for a couple python scripts. +// [wip] skate-dot generates dot files from inbound and outbound citation +// links. Just a demo, replacement for a couple python scripts. package main import ( diff --git a/skate/zipkey/zipkey.go b/skate/zipkey/zipkey.go index 9394734..eb3dc55 100644 --- a/skate/zipkey/zipkey.go +++ b/skate/zipkey/zipkey.go @@ -1,3 +1,5 @@ +// Package zipkey implements ZipRun, a type that allows to attach a callback to +// a group of elements taken from two streams. package zipkey import ( -- cgit v1.2.3