1
1
mirror of https://github.com/wader/fq.git synced 2024-12-24 05:41:38 +03:00

interp: Rename value.* to decode.* as it makes more sense

This commit is contained in:
Mattias Wadman 2021-12-02 21:43:16 +01:00
parent 1b7b2f9641
commit 36e5562e5b
4 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ import (
//go:embed internal.jq
//go:embed options.jq
//go:embed match.jq
//go:embed value.jq
//go:embed decode.jq
//go:embed buffer.jq
//go:embed funcs.jq
//go:embed grep.jq

View File

@ -1,7 +1,7 @@
include "internal";
include "options";
include "match";
include "value";
include "decode";
include "buffer";
include "funcs";
include "grep";