From b56ed6619577505a448f8ce2668aafa7b7201065 Mon Sep 17 00:00:00 2001 From: KerfuffleV2 Date: Wed, 8 Nov 2023 09:11:22 -0700 Subject: [PATCH] Damagage is not a word. --- gguf-py/examples/modify_gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gguf-py/examples/modify_gguf.py b/gguf-py/examples/modify_gguf.py index 8c7c670d0..48d4b80f1 100644 --- a/gguf-py/examples/modify_gguf.py +++ b/gguf-py/examples/modify_gguf.py @@ -24,7 +24,7 @@ def change_gguf(reader: GGUFReader, key: str, value: str) -> None: print(f'- Key {repr(key)} already set to requested value {current_value}') sys.exit(0) print('*** Warning *** Warning *** Warning **') - print('* Changing fields in a GGUF file can damagage it. If you are positive then type YES:') + print('* Changing fields in a GGUF file can damage it. If you are positive then type YES:') response = input('YES, I am sure> ') if response != 'YES': print("You didn't enter YES. Okay then, see ya!")