Skip to content

Commit

Permalink
Fix typo in table template
Browse files Browse the repository at this point in the history
  • Loading branch information
merks committed Mar 20, 2024
1 parent a9e7894 commit 736a529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -46,7 +46,7 @@ public static synchronized UpdateSiteTable create(String lineSeparator)
protected final String TEXT_18 = NL + " <p>This is a tabular summary of the bundle versions available in the p2 update sites for ";
protected final String TEXT_19 = ".</p>";
protected final String TEXT_20 = NL + " <p>A column header or version decorated with <b>";
protected final String TEXT_21 = "</b> indicates an addition of a bundle absent in the next/old column.</p>";
protected final String TEXT_21 = "</b> indicates an addition of a bundle absent in the next/older column.</p>";
protected final String TEXT_22 = "</b> indicates a version increase relative to the next/older column.</p>";
protected final String TEXT_23 = NL + " <p>A cell decorated with <b>";
protected final String TEXT_24 = "</b> indicates a removal relative to the next/older column.</p>";
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.eclipse.justj.p2/templates/table.html.jet
Expand Up @@ -106,7 +106,7 @@ SPDX-License-Identifier: EPL-2.0
<p>This is a tabular summary of the bundle versions available in the p2 update sites for <%=parent.getProjectLabel()%>.</p>
<%if (parent.getTableChildren().size() > 1) {%>
<%if (decorators.values().stream().anyMatch(decorator -> decorator.contains(UpdateSiteIndexGenerator.ADDED_DECORATOR))) {%>
<p>A column header or version decorated with <b><%=UpdateSiteIndexGenerator.ADDED_DECORATOR%></b> indicates an addition of a bundle absent in the next/old column.</p>
<p>A column header or version decorated with <b><%=UpdateSiteIndexGenerator.ADDED_DECORATOR%></b> indicates an addition of a bundle absent in the next/older column.</p>
<%}%>
<%if (decorators.values().stream().anyMatch(decorator -> decorator.contains(UpdateSiteIndexGenerator.UPDATED_DECORATOR))) {%>
<p>A column header or version decorated with <b><%=UpdateSiteIndexGenerator.UPDATED_DECORATOR%></b> indicates a version increase relative to the next/older column.</p>
Expand Down

0 comments on commit 736a529

Please sign in to comment.