$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: jurko.gospodnetic_at_[hidden]
Date: 2008-06-27 10:00:57
Author: jurko
Date: 2008-06-27 10:00:57 EDT (Fri, 27 Jun 2008)
New Revision: 46771
URL: http://svn.boost.org/trac/boost/changeset/46771
Log:
Minor stylistic Boost Build code comment changes.
Text files modified: 
   trunk/tools/build/v2/build/generators.jam |    10 +++++-----                              
   1 files changed, 5 insertions(+), 5 deletions(-)
Modified: trunk/tools/build/v2/build/generators.jam
==============================================================================
--- trunk/tools/build/v2/build/generators.jam	(original)
+++ trunk/tools/build/v2/build/generators.jam	2008-06-27 10:00:57 EDT (Fri, 27 Jun 2008)
@@ -418,13 +418,13 @@
     # the '%' symbol in the name pattern will be replaced with the 'name'
     # parameter to obtain the 'name' attribute.
     #
-    # For example, if targets types are T1 and T2(with name pattern "%_x"),
-    # suffixes for T1 and T2 are .t1 and t2, and source if foo.z, then created
+    # For example, if targets types are T1 and T2 (with name pattern "%_x"),
+    # suffixes for T1 and T2 are .t1 and .t2, and source is foo.z, then created
     # files would be "foo.t1" and "foo_x.t2". The 'name' attribute actually
     # determines the basename of a file.
     #
     # Note that this pattern mechanism has nothing to do with implicit patterns
-    # in make. It's a way to produce target which name is different for name of
+    # in make. It is a way to produce target which name is different for name of
     # source.
     #
     rule generated-targets ( sources + : property-set : project name ? )
@@ -449,8 +449,8 @@
             pre = $(pre[2-]) ;
             post = $(post[2-]) ;
 
-            targets += [ class.new file-target $(generated-name)
-              : $(t) : $(project) : $(a) ] ;
+            targets += [ class.new file-target $(generated-name) : $(t) :
+                $(project) : $(a) ] ;
         }
 
         return [ sequence.transform virtual-target.register : $(targets) ] ;