Skip to content
This repository has been archived by the owner. It is now read-only.

Commit ceab256

Browse files
committed
Address Martin's feedback
1 parent e66f256 commit ceab256

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/java/xsbti/api/Modifiers.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ public Modifiers(boolean isAbstract, boolean isOverride, boolean isFinal, boolea
4141
* Allow to set the modifiers from a flags byte where:
4242
*
4343
* 1. The first bit tells if has an abstract modifier.
44-
* 2. The first bit tells if has an override modifier.
45-
* 3. The first bit tells if has an final modifier.
46-
* 4. The first bit tells if has an sealed modifier.
47-
* 5. The first bit tells if has an implicit modifier.
48-
* 6. The first bit tells if has an lazy modifier.
49-
* 7. The first bit tells if has an macro modifier.
50-
* 8. The first bit tells if has an super accessor modifier.
44+
* 2. The second bit tells if has an override modifier.
45+
* 3. The third bit tells if has an final modifier.
46+
* 4. The fourth bit tells if has an sealed modifier.
47+
* 5. The fifth bit tells if has an implicit modifier.
48+
* 6. The sixth bit tells if has an lazy modifier.
49+
* 7. The seventh bit tells if has an macro modifier.
50+
* 8. The eighth bit tells if has an super accessor modifier.
5151
*
5252
* This method is not part of the public API and it may be removed at any point.
5353
* @param flags An instance of byte encoding the modifiers.

0 commit comments

Comments
 (0)