[jhbuild] Fix spelling error in comments



commit eff72f4571eaaaef5fa9db9c8dd0584e0c9788a4
Author: Dan Winship <danw gnome org>
Date:   Wed Jun 17 20:11:17 2009 -0400

    Fix spelling error in comments

 jhbuild/config.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/jhbuild/config.py b/jhbuild/config.py
index 35b11ae..2c1f3cc 100644
--- a/jhbuild/config.py
+++ b/jhbuild/config.py
@@ -98,7 +98,7 @@ def addpath(envvar, path):
             # PATH is special cased on Windows to allow execution without
             # sh.exe. The other env vars (like LD_LIBRARY_PATH) don't mean
             # anything to native Windows so they stay in UNIX format, but
-            # PATH is kept in Windows format (; seperated, c:/ or c:\ format
+            # PATH is kept in Windows format (; separated, c:/ or c:\ format
             # paths) so native Popen works.
             pathsep = os.pathsep
         else:
@@ -107,9 +107,9 @@ def addpath(envvar, path):
                 path = jhbuild.utils.subprocess_win32.fix_path_for_msys(path)
 
             if sys.platform.startswith('win') and path[1]==':':
-                # Windows: Don't allow c:/ style paths in :-seperated env vars
+                # Windows: Don't allow c:/ style paths in :-separated env vars
                 # for obvious reasons. /c/ style paths are valid - if a var is
-                # seperated by : it will only be of interest to programs inside
+                # separated by : it will only be of interest to programs inside
                 # MSYS anyway.
                 path='/'+path[0]+path[2:]
 



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