Skip to content

Commit 2eb9342

Browse files
committed
Update annotation generator comments
Signed-off-by: Ryan Nett <[email protected]>
1 parent 293fecc commit 2eb9342

File tree

1 file changed

+2
-2
lines changed
  • tensorflow-core/tensorflow-core-generator/src/main/java/org/tensorflow/op/generator

1 file changed

+2
-2
lines changed

tensorflow-core/tensorflow-core-generator/src/main/java/org/tensorflow/op/generator/ClassGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ private Set<TypeVariableName> buildInputsClass() {
10541054
return typeVars;
10551055
}
10561056

1057-
/** Adds the GeneratedOpMetadata annotation */
1057+
/** Adds the GeneratedOpMetadata annotation to the op class. */
10581058
private void addInputsMetadataAnnotation() {
10591059
builder.addAnnotation(
10601060
AnnotationSpec.builder(Names.GeneratedOpMetadata)
@@ -1063,7 +1063,7 @@ private void addInputsMetadataAnnotation() {
10631063
.build());
10641064
}
10651065

1066-
/** Adds the GeneratedOpInputsMetadata annotation */
1066+
/** Adds the GeneratedOpInputsMetadata annotation to the op input class. */
10671067
private void addInputsMetadataAnnotation(TypeSpec.Builder inputsBuilder) {
10681068
inputsBuilder.addAnnotation(
10691069
AnnotationSpec.builder(Names.GeneratedOpInputsMetadata)

0 commit comments

Comments
 (0)