Skip to content

Commit cf8c4b6

Browse files
committed
Fixed JavaDoc issues in object model docs
Signed-off-by: Stefan Marr <git@stefan-marr.de>
1 parent 2c316d1 commit cf8c4b6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

truffle/com.oracle.truffle.api.object/src/com/oracle/truffle/api/object/Layout.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ public static Layout createLayout() {
8686
* @param objectType that describes the object instance with this shape.
8787
* @param sharedData for language-specific use
8888
* @param id for language-specific use
89-
* @return
9089
*/
9190
public abstract Shape createShape(ObjectType objectType, Object sharedData, int id);
9291

truffle/com.oracle.truffle.api.object/src/com/oracle/truffle/api/object/Property.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected Property() {
3535
/**
3636
* Create a new property.
3737
*
38-
* @param flags, for language-specific use
38+
* @param flags for language-specific use
3939
*/
4040
public static Property create(Object key, Location location, int flags) {
4141
return Layout.getFactory().createProperty(key, location, flags);

0 commit comments

Comments
 (0)