Skip to content

Commit

Permalink
chore: update wrong param name in javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
paodb committed Jun 14, 2024
1 parent 9ffc81c commit 3464c69
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public void hideZoom(boolean hideZoom) {
/**
* Sets a tooltip text for the previous page button in toolbar.
*
* @param tooltipText text to show in tooltip
* @param previousPageTooltipText text to show in tooltip
*/
public void setPreviousPageTooltipText(String previousPageTooltipText) {
this.getElement().setProperty("previousPageTooltip", previousPageTooltipText);
Expand All @@ -291,7 +291,7 @@ public String getPreviousPageTooltipText() {
/**
* Sets tooltip text for the next page button in toolbar.
*
* @param tooltipText text to show in tooltip
* @param nextPageTooltipText text to show in tooltip
*/
public void setNextPageTooltipText(String nextPageTooltipText) {
this.getElement().setProperty("nextPageTooltip", nextPageTooltipText);
Expand All @@ -309,7 +309,7 @@ public String getNextPageTooltipText() {
/**
* Sets tooltip text for the sidebar toogle button in toolbar.
*
* @param tooltipText text to show in tooltip
* @param sidebarToggleTooltipText text to show in tooltip
*/
public void setSidebarToggleTooltipText(String sidebarToggleTooltipText) {
this.getElement().setProperty("sidebarToggleTooltip", sidebarToggleTooltipText);
Expand Down

0 comments on commit 3464c69

Please sign in to comment.