From 94fbc737c21608f354c1aed55a321ca27daaa274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Fri, 27 Jun 2008 14:00:57 +0000 Subject: [PATCH] Minor stylistic Boost Build code comment changes. [SVN r46771] --- src/build/generators.jam | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/build/generators.jam b/src/build/generators.jam index 9d5d61c23..77fd423ad 100644 --- a/src/build/generators.jam +++ b/src/build/generators.jam @@ -418,13 +418,13 @@ class generator # 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 @@ class generator 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) ] ;