Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix javadoc in TypeFactory.java #2688

Merged
merged 4 commits into from
Oct 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/main/java/spoon/reflect/factory/TypeFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public <T> CtArrayTypeReference<T[]> createArrayReference(CtTypeReference<T> ref
}

/**
* Creates a reference to an n-dimension array of given type.
* Creates a reference to a n-dimension array of given type.
*/
public CtArrayTypeReference<?> createArrayReference(CtTypeReference<?> reference, int n) {
CtTypeReference<?> componentType;
Expand Down Expand Up @@ -540,7 +540,7 @@ private void addNestedType(List<CtType<?>> list, CtType<?> t) {

/**
* Gets a type from its runtime Java class. If the class isn't in the spoon path,
* the class will be build from the Java reflection and will be marked as
* the class will be built from the Java reflection and will be marked as
* shadow (see {@link spoon.reflect.declaration.CtShadowable}).
*
* @param <T>
Expand Down Expand Up @@ -715,5 +715,4 @@ public CtImport createImport(CtReference reference) {
CtImport ctImport = factory.Core().createImport();
return ctImport.setReference(reference.clone());
}

}