Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ abstract static class Segment {
/** A constant for the END_BINDING segment. */
private static final Segment END_BINDING = create(SegmentKind.END_BINDING, "");

/** Creates a segment of given kind and value. */
/** Creates a segment of given kind and value. test */
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The addition of the word test to the Javadoc comment appears to be extraneous and should be removed to maintain the clarity and professionalism of the documentation.

Suggested change
/** Creates a segment of given kind and value. test */
/** Creates a segment of given kind and value. */

private static Segment create(SegmentKind kind, String value) {
return new AutoValue_PathTemplate_Segment(kind, value, "");
}
Expand Down
Loading