UnixOperatingSystem.st
changeset 14839 f79ff27d7e52
parent 14802 9730b178dbcc
child 14899 81d128d5fb7d
child 18028 e39da2aa21bc
--- a/UnixOperatingSystem.st	Fri Mar 08 10:25:17 2013 +0100
+++ b/UnixOperatingSystem.st	Fri Mar 08 10:25:33 2013 +0100
@@ -8602,11 +8602,11 @@
 
 encodePath:pathName
     "encode the pathName for use with system calls.
-     E.g. linux system calls accept sigle byte strings only,
+     E.g. linux system calls accept single byte strings only,
      so the pathName has been UTF-8 encoded, before using it in a system call."
 
     (pathName notNil and:[Codeset == #utf8]) ifTrue:[
-	^ pathName utf8Encoded.
+        ^ pathName utf8Encoded.
     ].
     ^ pathName
 ! !
@@ -13476,11 +13476,11 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.305 2013-02-23 12:34:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.306 2013-03-08 09:25:33 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.305 2013-02-23 12:34:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.306 2013-03-08 09:25:33 stefan Exp $'
 ! !