From 9bb876895510bf6f57f8dc9b5df61db28abc5191 Mon Sep 17 00:00:00 2001 From: Christopher Weigle Date: Thu, 7 May 2015 21:18:44 -0400 Subject: [PATCH] Fixed a typo Not enough knowledge to help make it better, but I found a typo I noticed while using it. :D --- src/ce_editor.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_editor.pas b/src/ce_editor.pas index 4dac3e16..725693a3 100644 --- a/src/ce_editor.pas +++ b/src/ce_editor.pas @@ -239,7 +239,7 @@ var begin doc := getDocument(index); if doc.modified then if dlgOkCancel(format( - 'The latest "%s" mofifications are not saved, continue ?', + 'The latest "%s" modifications are not saved, continue ?', [shortenPath(doc.fileName,25)])) = mrCancel then exit(false); doc.Free; result := true;