Fixing typos in the javadoc comments.

Signed-off-by: miklossy <miklossy@itemis.de>
This commit is contained in:
miklossy 2020-12-02 07:36:39 +01:00 committed by Tamas Miklossy
parent 459602b791
commit 98df842c0b
11 changed files with 13 additions and 13 deletions

View file

@ -13,7 +13,7 @@ import org.eclipse.xtext.testing.SignatureHelpConfiguration;
import org.junit.Test;
/**
* Class for testing the the {@link SignatureHelpService signature help service}
* Class for testing the {@link SignatureHelpService signature help service}
* implementation.
*
* @author akos.kitta - Initial contribution and API

View file

@ -21,7 +21,7 @@ import com.google.inject.Inject;
*
* Clients may extend the {@link DefaultImpl} to customize the behavior or implement this interface directly.
*
* Changes are usually performed in the The {@link RenameContext}
* Changes are usually performed in the {@link RenameContext}
*
* @author koehnlein - Initial contribution and API
* @since 2.13

View file

@ -305,7 +305,7 @@ public class RenameService2 implements IRenameService2 {
}
/**
* Tries to read the {@code name} {@link EAttribute} from the the given {@code element}.
* Tries to read the {@code name} {@link EAttribute} from the given {@code element}.
*
* It never returns an empty string, but a {@code null} instead.
*/

View file

@ -79,7 +79,7 @@ public class Files {
}
}
/** Clean the content of the the given folder.
/** Clean the content of the given folder.
*
* @param parentFolder the folder to be cleaned. It must not be {@code null}.
* @param filter a filter for selecting the files to be removed. If it is {@code null}, all the files are removed.

View file

@ -89,7 +89,7 @@ class GrammarAccessExtensions {
/**
* Converts an arbitary string to a valid Java identifier that is valid in an Antlr grammar action context, too.
* The string is split up along the the characters that are not valid as java
* The string is split up along the characters that are not valid as java
* identifier. The first character of each segments is made upper case which
* leads to a camel-case style.
* @param text the string

View file

@ -134,7 +134,7 @@ public class GrammarAccessExtensions {
/**
* Converts an arbitary string to a valid Java identifier that is valid in an Antlr grammar action context, too.
* The string is split up along the the characters that are not valid as java
* The string is split up along the characters that are not valid as java
* identifier. The first character of each segments is made upper case which
* leads to a camel-case style.
* @param text the string

View file

@ -18,7 +18,7 @@ import com.google.inject.ImplementedBy;
/**
* Encapsulate the searched data. Clients may choose to attach more information to the
* target URIs by means of {@link #putUserData(Key, Object)}. This information can be obtain
* target URIs by means of {@link #putUserData(Key, Object)}. This information can be obtained
* in later processing steps to optimize the reference lookup.
*
* If different clients (e.g. different languages) try to share user data, they have to agree on

View file

@ -26,7 +26,7 @@ import org.eclipse.xtext.util.ITextRegion;
* <li>The order in which methods of this service are called does not impact the result, except for insertions.</li>
* </ol>
*
* This service does NOT guarantee consistency the the grammar. This is the callers responsibility.
* This service does NOT guarantee consistency to the grammar. This is the callers responsibility.
*
* @author Moritz Eysholdt - Initial contribution and API
*

View file

@ -45,7 +45,7 @@ import com.google.common.collect.Lists;
*
* This API is quite low level and internal functionality of the framework relies on the implemented contracts.
* Clients should rather use the language specific APIs that provide almost the same functionality, e.g.
* {@link ILocationInFileProvider} and {@link EObjectAtOffsetHelper} if they want to to access the region
* {@link ILocationInFileProvider} and {@link EObjectAtOffsetHelper} if they want to access the region
* of a {@link EObject semantic object}.
*
* @author Sebastian Zarnekow - Initial contribution and API
@ -110,8 +110,8 @@ public class NodeModelUtils extends InternalNodeModelUtils {
}
/**
* Compute the line and column information at the given offset from any node that belongs the the document. The line is one-based, e.g.
* the first line has the line number '1'. The line break belongs the line that it breaks. In other words, the first line break in the
* Compute the line and column information at the given offset from any node that belongs to the document. The line is one-based, e.g.
* the first line has the line number '1'. The line break belongs to the line that it breaks. In other words, the first line break in the
* document also has the line number '1'. The column number starts at '1', too. In effect, the document offset '0' will always return
* line '1' and column '1'.
*

View file

@ -26,7 +26,7 @@ import com.google.common.collect.Iterables;
* This implementation assumes, that the keys of the {@link Map} correspond to the keys of the contained {@link org.eclipse.xtext.resource.EObjectDescription}.
* Additionally it assumes, that those keys are equal to <code>description.getName().toLowerCase()</code>.
*
* When looking up elements using {@link #getElements(QualifiedName)} this implementation looks up the the elements from the map, hence are much
* When looking up elements using {@link #getElements(QualifiedName)} this implementation looks up the elements from the map, hence are much
* more efficient for many {@link IEObjectDescription}s.
*
* @author Sven Efftinge - Initial contribution and API

View file

@ -24,7 +24,7 @@ import com.google.common.collect.Multimap;
* This implementation assumes, that the keys of the {@link Multimap} are the keys of the contained {@link org.eclipse.xtext.resource.EObjectDescription}s
* as well as the name.
*
* When looking up elements using {@link #getElements(QualifiedName)} this implementation looks up the the elements from the map, hence are much
* When looking up elements using {@link #getElements(QualifiedName)} this implementation looks up the elements from the map, hence are much
* more efficient for many {@link IEObjectDescription}s.
*
* @author Sven Efftinge - Initial contribution and API