Hi all,

In BOOST_BUILD_PATH/kernel/class.jam


06: # Polymorphic class system built on top of core Jam facilities.
07: #
08: # Classes are defined by 'class' keywords::
09: #
10: #     class myclass ( arg1 )
11: #     {
12: #         rule __init__ ( )          # constructor
13: #         {
14: #             self.attribute = $(arg1) ;

line 10 is wrong, I change the comments to

10: #     class myclass
11: #     {
12: #         rule __init__ ( arg1 )          # constructor


  Best regards,
    Rick Yang