1
1
mirror of https://github.com/wader/fq.git synced 2024-09-11 20:07:11 +03:00

luajit: clarify description

This commit is contained in:
Babz 2023-06-21 01:28:28 +02:00
parent b24063be02
commit a83576a83a
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ $ fq -n _registry.groups.probe
"gif",
"gzip",
"jpeg",
"luajit",
"macho",
"macho_fat",
"matroska",
@ -106,7 +107,7 @@ ipv6_packet Internet protocol v6 packet
jpeg Joint Photographic Experts Group file
json JavaScript Object Notation
jsonl JavaScript Object Notation Lines
luajit LuaJIT 2.0 bytecode dump
luajit LuaJIT 2.0 bytecode
macho Mach-O macOS executable
macho_fat Fat Mach-O macOS executable (multi-architecture)
markdown Markdown

View File

@ -38,7 +38,7 @@ func init() {
interp.RegisterFormat(
format.LuaJIT,
&decode.Format{
Description: "LuaJIT 2.0 bytecode dump",
Description: "LuaJIT 2.0 bytecode",
DecodeFn: LuaJITDecode,
})
interp.RegisterFS(LuaJITFS)