From 4da9b90afb357f03cd5e80b032d575aa380c7cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 26 Jul 2008 00:16:07 +0000 Subject: [PATCH] Minor stylistic comment change in the Boost Build tools/testing.jam module. [SVN r47825] --- v2/tools/testing.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v2/tools/testing.jam b/v2/tools/testing.jam index 05cffd39a..4ac5955e2 100644 --- a/v2/tools/testing.jam +++ b/v2/tools/testing.jam @@ -111,9 +111,9 @@ rule make-test ( target-type : sources + : requirements * : target-name ? ) } # Remember the test (for --dump-tests). A good way would be to collect all - # given a project. This has some technical problems: e.g. we can't call this - # dump from Jamfile since projects referred by 'build-project' are not - # available until the whole Jamfile is loaded. + # given a project. This has some technical problems: e.g. we can not call + # this dump from a Jamfile since projects referred by 'build-project' are + # not available until the whole Jamfile has been loaded. .all-tests += $(t) ; return $(t) ; }