]> source.dussan.org Git - aspectj.git/commitdiff
fix for Bugzilla Bug 75486
authoracolyer <acolyer>
Thu, 21 Oct 2004 13:09:21 +0000 (13:09 +0000)
committeracolyer <acolyer>
Thu, 21 Oct 2004 13:09:21 +0000 (13:09 +0000)
   issingleton or issingleton()?

docs/progGuideDB/quickreference.xml
docs/progGuideDB/semantics.xml

index 6a5d83052a5f41ef834c517b1fe90d2655811afa..ef5c3cb80a2254f91204a0ce14cf03e2f55cbc5d 100644 (file)
         </literal>
       </blockquote>
     where <replaceable>PerClause</replaceable> defines how the aspect is
-    instantiated and associated (<literal>issingleton</literal> by
+    instantiated and associated (<literal>issingleton()</literal> by
     default):
     </para>
 
         <tbody valign="top">
           <row>
             <entry>
-              [ <literal>issingleton</literal> ]
+              [ <literal>issingleton()</literal> ]
             </entry>
             <entry>
               One instance of the aspect is made.  This is
index fb83857e48c5c41ae0bce3a6f1f899c92ea2edfe..7ea74fe8032c7d42d15a357b37cbc3dccc6fd07e 100644 (file)
@@ -2966,11 +2966,11 @@ ModifiersPattern =
 
         <itemizedlist>
           <listitem><literal>aspect <replaceable>Id</replaceable> { ... }</literal></listitem>
-          <listitem><literal>aspect <replaceable>Id</replaceable> issingleton { ... }</literal></listitem>
+          <listitem><literal>aspect <replaceable>Id</replaceable> issingleton() { ... }</literal></listitem>
         </itemizedlist>
 
         <para>
-          By default (or by using the modifier <literal>issingleton</literal>)
+          By default (or by using the modifier <literal>issingleton()</literal>)
           an aspect has exactly one instance that cuts across the entire
           program.  That instance is available at any time during program
           execution with the static method <literal>aspectOf()</literal>