Correct naming
diff --git a/docmlet/org.eclipse.statet.docmlet.tex.ui/src/org/eclipse/statet/internal/docmlet/tex/ui/sourceediting/LtxArgumentListContextInformation.java b/docmlet/org.eclipse.statet.docmlet.tex.ui/src/org/eclipse/statet/internal/docmlet/tex/ui/sourceediting/LtxArgumentListContextInformation.java index 39cce51..fa0658f 100644 --- a/docmlet/org.eclipse.statet.docmlet.tex.ui/src/org/eclipse/statet/internal/docmlet/tex/ui/sourceediting/LtxArgumentListContextInformation.java +++ b/docmlet/org.eclipse.statet.docmlet.tex.ui/src/org/eclipse/statet/internal/docmlet/tex/ui/sourceediting/LtxArgumentListContextInformation.java
@@ -39,7 +39,7 @@ private final TexCommand command; private final String information; - private final ImIntList informationArgumentIndexes; + private final ImIntList informationParameterIndexes; public LtxArgumentListContextInformation(final int offset, final TexCommand command) { @@ -51,7 +51,7 @@ final IntList idxs= new IntArrayList(); appendArgumentList(sb, idxs, this.command); this.information= sb.toString(); - this.informationArgumentIndexes= ImCollections.toIntList(idxs); + this.informationParameterIndexes= ImCollections.toIntList(idxs); } } @@ -91,7 +91,7 @@ * @return list with the indexes */ public ImIntList getInformationDisplayStringParameterIndexes() { - return this.informationArgumentIndexes; + return this.informationParameterIndexes; }