$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: jurko.gospodnetic_at_[hidden]
Date: 2008-07-19 17:04:06
Author: jurko
Date: 2008-07-19 17:04:05 EDT (Sat, 19 Jul 2008)
New Revision: 47610
URL: http://svn.boost.org/trac/boost/changeset/47610
Log:
Minor stylistic comment changes in different Boost Build modules.
Text files modified: 
   trunk/tools/build/v2/build/feature.jam        |     6 +++---                                  
   trunk/tools/build/v2/build/property.jam       |     5 +++--                                   
   trunk/tools/build/v2/build/virtual-target.jam |     2 +-                                      
   3 files changed, 7 insertions(+), 6 deletions(-)
Modified: trunk/tools/build/v2/build/feature.jam
==============================================================================
--- trunk/tools/build/v2/build/feature.jam	(original)
+++ trunk/tools/build/v2/build/feature.jam	2008-07-19 17:04:05 EDT (Sat, 19 Jul 2008)
@@ -433,8 +433,8 @@
     }
     if ! $($(feature).values)
     {
-        # This is the first value specified for this feature,
-        # take it as default value
+        # This is the first value specified for this feature so make it be the
+        # default.
         $(feature).default = $(values[1]) ;
     }
     $(feature).values += $(values) ;
@@ -584,7 +584,7 @@
     }
     else
     {
-        # If no subfeature was specified, we didn't expect to see a
+        # If no subfeature was specified, we do not expect to see a
         # value-string.
         if $(value-string)
         {
Modified: trunk/tools/build/v2/build/property.jam
==============================================================================
--- trunk/tools/build/v2/build/property.jam	(original)
+++ trunk/tools/build/v2/build/property.jam	2008-07-19 17:04:05 EDT (Sat, 19 Jul 2008)
@@ -469,7 +469,8 @@
 # Assumes that all feature values that start with '@' are names of rules, used
 # in 'context-module'. Such rules can be either local to the module or global.
 # Converts such values into 'indirect-rule' format (see indirect.jam), so they
-# can be called from other modules.
+# can be called from other modules. Does nothing for such values that are
+# already in the 'indirect-rule' format.
 #
 rule translate-indirect ( specification * : context-module )
 {
@@ -482,7 +483,7 @@
             local v ;
             if [ MATCH "^([^%]*)%([^%]+)$" : $(m) ]
             {
-                # Rule is already in indirect format.
+                # Rule is already in the 'indirect-rule' format.
                 v = $(m) ;
             }
             else
Modified: trunk/tools/build/v2/build/virtual-target.jam
==============================================================================
--- trunk/tools/build/v2/build/virtual-target.jam	(original)
+++ trunk/tools/build/v2/build/virtual-target.jam	2008-07-19 17:04:05 EDT (Sat, 19 Jul 2008)
@@ -358,7 +358,7 @@
     rule grist ( )
     {
         # Depending on target, there may be different approaches to generating
-        # unique prefixes. We'll generate prefixes in the form
+        # unique prefixes. We generate prefixes in the form:
         # <one letter approach code> <the actual prefix>
         local path = [ path ] ;
         if $(path)