comments:
authorClaus Gittinger <cg@exept.de>
Mon, 19 Sep 2011 16:07:09 +0200
changeset 13713 76a465a42b8b
parent 13712 9b34eae96ce6
child 13714 3e888c3420f4
comments: #directory #module
PackageId.st
--- a/PackageId.st	Mon Sep 19 10:14:26 2011 +0200
+++ b/PackageId.st	Mon Sep 19 16:07:09 2011 +0200
@@ -152,7 +152,7 @@
 !PackageId methodsFor:'queries'!
 
 directory
-    "return the directory component. Thats the rest after the colon.
+    "return the directory component. That's the rest after the colon.
      The module is typically used to define the project-path or project-id within its
      sourcecode repository (which is selected via the module)."
 
@@ -175,6 +175,7 @@
 
     "Created: / 18-08-2006 / 12:15:33 / cg"
     "Modified: / 28-11-2006 / 11:39:14 / cg"
+    "Modified (comment): / 19-09-2011 / 11:01:08 / cg"
 !
 
 isModuleId
@@ -206,7 +207,7 @@
 !
 
 module
-    "return the module component. Thats the first component up to the colon.
+    "return the module component. That's the first component up to the colon.
      The module is typically used to select a corresponding sourcecode repository."
 
     |idx|
@@ -224,6 +225,7 @@
 
     "Created: / 18-08-2006 / 12:13:53 / cg"
     "Modified: / 27-12-2006 / 11:51:25 / cg"
+    "Modified (comment): / 19-09-2011 / 11:01:15 / cg"
 !
 
 parentPackage
@@ -279,9 +281,9 @@
 !PackageId class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PackageId.st,v 1.16 2009-10-22 15:43:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PackageId.st,v 1.17 2011-09-19 14:07:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/PackageId.st,v 1.16 2009-10-22 15:43:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PackageId.st,v 1.17 2011-09-19 14:07:09 cg Exp $'
 ! !