Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2024-11-15 00:04:10 +00:00
parent 7bfe011ff6
commit f221207426
4 changed files with 12 additions and 12 deletions
@@ -64,11 +64,11 @@ public class MarkdownOption implements Serializable {
}
/**
* Mode to render (comment, gfm, markdown) in: body
* Mode to render (markdown, comment, wiki, file) in: body
*
* @return mode
*/
@Schema(description = "Mode to render (comment, gfm, markdown) in: body")
@Schema(description = "Mode to render (markdown, comment, wiki, file) in: body")
public String getMode() {
return mode;
}
@@ -102,11 +102,11 @@ public class MarkdownOption implements Serializable {
}
/**
* Is it a wiki page ? in: body
* Is it a wiki page? (use mode=wiki instead) Deprecated: true in: body
*
* @return wiki
*/
@Schema(description = "Is it a wiki page ? in: body")
@Schema(description = "Is it a wiki page? (use mode=wiki instead) Deprecated: true in: body")
public Boolean isWiki() {
return wiki;
}
@@ -86,11 +86,11 @@ public class MarkupOption implements Serializable {
}
/**
* Mode to render (comment, gfm, markdown, file) in: body
* Mode to render (markdown, comment, wiki, file) in: body
*
* @return mode
*/
@Schema(description = "Mode to render (comment, gfm, markdown, file) in: body")
@Schema(description = "Mode to render (markdown, comment, wiki, file) in: body")
public String getMode() {
return mode;
}
@@ -124,11 +124,11 @@ public class MarkupOption implements Serializable {
}
/**
* Is it a wiki page ? in: body
* Is it a wiki page? (use mode=wiki instead) Deprecated: true in: body
*
* @return wiki
*/
@Schema(description = "Is it a wiki page ? in: body")
@Schema(description = "Is it a wiki page? (use mode=wiki instead) Deprecated: true in: body")
public Boolean isWiki() {
return wiki;
}