aboutsummaryrefslogtreecommitdiffstats
path: root/skate/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'skate/cmd')
-rw-r--r--skate/cmd/skate-cdx-lookup/main.go1
-rw-r--r--skate/cmd/skate-map/main.go2
2 files changed, 1 insertions, 2 deletions
diff --git a/skate/cmd/skate-cdx-lookup/main.go b/skate/cmd/skate-cdx-lookup/main.go
index 0578098..a6fc5f9 100644
--- a/skate/cmd/skate-cdx-lookup/main.go
+++ b/skate/cmd/skate-cdx-lookup/main.go
@@ -51,7 +51,6 @@ func main() {
log.Fatal(err)
}
line = strings.TrimSpace(line)
-
if !cache.Has(line) {
_, b, err := skate.LookupCDX(line)
if err != nil {
diff --git a/skate/cmd/skate-map/main.go b/skate/cmd/skate-map/main.go
index 3682e7b..6f3acb9 100644
--- a/skate/cmd/skate-map/main.go
+++ b/skate/cmd/skate-map/main.go
@@ -65,7 +65,7 @@ var (
func main() {
flag.Parse()
availableMappers := map[string]skate.Mapper{
- // Add new mapper functions here.
+ // Add new mapper functions here. TODO: add more docs.
"id": skate.Identity,
"ff": skate.CreateFixedMapper(*extraValue),
"ti": skate.MapperTitle,