[longomatch] Fix typo



commit 013e9c31e28a0c814a36b38f6bb1a65e2f550ca3
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Thu Sep 29 21:16:58 2011 +0200

    Fix typo
    
    Fixes #660055

 LongoMatch/Services/TemplatesService.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch/Services/TemplatesService.cs b/LongoMatch/Services/TemplatesService.cs
index 7652ca7..1280851 100644
--- a/LongoMatch/Services/TemplatesService.cs
+++ b/LongoMatch/Services/TemplatesService.cs
@@ -204,7 +204,7 @@ namespace LongoMatch.Services
 			Log.Information("Saving template " + filename);
 			
 			if (File.Exists(filename)) {
-				throw new Exception (Catalog.GetString("A template already exixts with " +
+				throw new Exception (Catalog.GetString("A template already exists with " +
 				                                       "the name: ") + filename);
 			}
 			
@@ -222,7 +222,7 @@ namespace LongoMatch.Services
 		
 		public void Copy(string orig, string copy) {
 			if (File.Exists(copy)) {
-				throw new Exception (Catalog.GetString("A template already exixts with " +
+				throw new Exception (Catalog.GetString("A template already exists with " +
 				                                       "the name: ") + copy);
 			}
 			



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]