From f802eab828c7b5cbe4d056aab34c356541111250 Mon Sep 17 00:00:00 2001 From: Truman Kilen Date: Fri, 6 Oct 2023 16:15:15 -0500 Subject: [PATCH] Fix typo --- README.md | 2 +- repak_cli/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 921d4bf..1a296cc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Usage: repak [OPTIONS] Commands: info Print .pak info list List .pak files - hash-list List .pka files and the SHA256 of their contents. Useful for finding differences between paks + hash-list List .pak files and the SHA256 of their contents. Useful for finding differences between paks unpack Unpack .pak file pack Pack directory into .pak file get Reads a single file to stdout diff --git a/repak_cli/src/main.rs b/repak_cli/src/main.rs index fcd8b9f..1e1616b 100644 --- a/repak_cli/src/main.rs +++ b/repak_cli/src/main.rs @@ -118,7 +118,7 @@ enum Action { Info(ActionInfo), /// List .pak files List(ActionList), - /// List .pka files and the SHA256 of their contents. Useful for finding differences between paks + /// List .pak files and the SHA256 of their contents. Useful for finding differences between paks HashList(ActionHashList), /// Unpack .pak file Unpack(ActionUnpack),