ide/ProjectView: Fixed typo on deleting intermediate files message
authorJerome St-Louis <jerome@ecere.com>
Mon, 29 Jul 2013 09:10:42 +0000 (05:10 -0400)
committerJerome St-Louis <jerome@ecere.com>
Mon, 29 Jul 2013 09:10:42 +0000 (05:10 -0400)
ide/src/project/ProjectView.ec

index 43730b8..f944c38 100644 (file)
@@ -1104,10 +1104,10 @@ class ProjectView : Window
                else
                {
                   if(config)
-                     ide.outputView.buildBox.Logf($"Deleteing intermediate objects for %s %s in project %s using the %s configuration...\n",
+                     ide.outputView.buildBox.Logf($"Deleting intermediate objects for %s %s in project %s using the %s configuration...\n",
                            node.type == file ? $"single file" : $"folder", node.name, project.name, config.name);
                   else
-                     ide.outputView.buildBox.Logf($"Deleteing intermediate objects for %s %s in project %s...\n",
+                     ide.outputView.buildBox.Logf($"Deleting intermediate objects for %s %s in project %s...\n",
                            node.type == file ? $"single file" : $"folder", node.name, project.name);
 
                   node.DeleteIntermediateFiles(compiler, config, bitDepth, namesInfo, false);