diff --git a/src/main/java/com/flowingcode/vaadin/addons/markdown/BaseMarkdownComponent.java b/src/main/java/com/flowingcode/vaadin/addons/markdown/BaseMarkdownComponent.java index 2896e82..9cee00c 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/markdown/BaseMarkdownComponent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/markdown/BaseMarkdownComponent.java @@ -53,7 +53,7 @@ public BaseMarkdownComponent(String content) { } /** - * Sets the content of the Markdown component. + * Gets the content of the Markdown component. * * @return the content of the Markdown component */ @@ -62,9 +62,9 @@ public String getContent() { } /** - * Gets the content of the Markdown component. + * Sets the content of the Markdown component. * - * @param content retrieved from the state of the component + * @param content the content to be used in the Markdown component */ public void setContent(String content) { this.content = content;