FileBasedSourceCodeManager.st
changeset 4082 3fbcd6d0300c
parent 3660 523f83d184f2
child 4086 aafed7101969
child 4138 4e6d223eb117
--- a/FileBasedSourceCodeManager.st	Mon Aug 15 18:53:37 2016 +0200
+++ b/FileBasedSourceCodeManager.st	Mon Aug 22 11:27:31 2016 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 AbstractSourceCodeManager subclass:#FileBasedSourceCodeManager
 	instanceVariableNames:''
 	classVariableNames:'Verbose RepositoryPath ModulePathes'
@@ -54,7 +56,7 @@
      Return the path to the top directory for a particular module.
      If no specific path was defined for that module, return the value of
      the global (fallBack) repositoryPath.
-     Nil is returned if no repository is available." 
+     Nil is returned if no repository is available."
 
     ModulePathes isNil ifTrue:[^ RepositoryPath].
     aModuleName isNil ifTrue:[^ RepositoryPath].
@@ -74,7 +76,7 @@
 !
 
 repositoryInfoPerModule
-    "return the dictionary, which associates repository pathes to module names.
+    "return the dictionary, which associates repository paths to module names.
      If no entry is contained in this dictionary for some module,
      the default path will be used."
 
@@ -84,7 +86,7 @@
 !
 
 repositoryInfoPerModule:aDictionary
-    "set the dictionary, which associates repository pathes to module names.
+    "set the dictionary, which associates repository paths to module names.
      If no entry is contained in this dictionary for some module,
      the default path will be used."
 
@@ -448,11 +450,11 @@
 !FileBasedSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/FileBasedSourceCodeManager.st,v 1.10 2014-11-28 19:37:10 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/FileBasedSourceCodeManager.st,v 1.10 2014-11-28 19:37:10 cg Exp $'
+    ^ '$Header$'
 !
 
 version_FileRepository