Bug 22637 - AST: Typos in Javadoc Assignment.Operator
Summary: AST: Typos in Javadoc Assignment.Operator
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.1 M1   Edit
Assignee: Olivier Thomann CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-21 10:18 EDT by Martin Aeschlimann CLA
Modified: 2002-09-19 10:02 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Aeschlimann CLA 2002-08-21 10:18:28 EDT
20020820
The javadoc comments contain a '=' too much.
/** >>== operator. */ results in >>== should be >>=


		public static final Operator REMAINDER_ASSIGN = new Operator("%
=");//$NON-NLS-1$
		/** <<== operator. */
		public static final Operator LEFT_SHIFT_ASSIGN =
			new Operator("<<=");//$NON-NLS-1$
		/** &gt;&gt;== operator. */
		public static final Operator RIGHT_SHIFT_SIGNED_ASSIGN =
			new Operator(">>=");//$NON-NLS-1$
		/** &gt;&gt;&gt;== operator. */
		public static final Operator RIGHT_SHIFT_UNSIGNED_ASSIGN =
			new Operator(">>>=");//$NON-NLS-1$
Comment 1 Olivier Thomann CLA 2002-08-28 12:44:13 EDT
Fixed and released.
Comment 2 David Audel CLA 2002-09-19 10:02:49 EDT
Verified.