diff src/common.cpp @ 412:498c2ca0b367

Typo fix only
author Chris Cannam
date Mon, 13 Jun 2011 16:56:01 +0100
parents d0ebd797c5a1
children 459b140032d4
line wrap: on
line diff
--- a/src/common.cpp	Tue Jun 07 11:00:16 2011 +0100
+++ b/src/common.cpp	Mon Jun 13 16:56:01 2011 +0100
@@ -262,7 +262,7 @@
 {
     QString d;
     for (int i = 0; i < s.length(); ++i) {
-        // backslash-u escaped with another backslash: replace with a
+        // backslash escaped with another backslash: replace with a
         // single backslash and skip on
         if (i+1 < s.length() && s[i] == '\\' && s[i+1] == '\\') {
             d += '\\';