Skip to content

Commit

Permalink
chore: make api description brief #2179
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-mihok authored and mturoci committed Nov 16, 2023
1 parent ed9bc6e commit b8804cb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion py/h2o_lightwave/h2o_lightwave/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -9625,7 +9625,7 @@ def __init__(
self.data = data
"""Additional data for the card."""
self.compact = compact
"""In compact mode markdown content takes less screen space. Defaults to True."""
"""Make spacing tighter. Defaults to True."""
self.commands = commands
"""Contextual menu commands for this component."""

Expand Down
2 changes: 1 addition & 1 deletion py/h2o_lightwave/h2o_lightwave/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3403,7 +3403,7 @@ def markdown_card(
title: The title for this card.
content: The markdown content. Supports Github Flavored Markdown (GFM): https://guides.github.com/features/mastering-markdown/
data: Additional data for the card.
compact: In compact mode markdown content takes less screen space. Defaults to True.
compact: Make spacing tighter. Defaults to True.
commands: Contextual menu commands for this component.
Returns:
A `h2o_wave.types.MarkdownCard` instance.
Expand Down
2 changes: 1 addition & 1 deletion py/h2o_wave/h2o_wave/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -9625,7 +9625,7 @@ def __init__(
self.data = data
"""Additional data for the card."""
self.compact = compact
"""In compact mode markdown content takes less screen space. Defaults to True."""
"""Make spacing tighter. Defaults to True."""
self.commands = commands
"""Contextual menu commands for this component."""

Expand Down
2 changes: 1 addition & 1 deletion py/h2o_wave/h2o_wave/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3403,7 +3403,7 @@ def markdown_card(
title: The title for this card.
content: The markdown content. Supports Github Flavored Markdown (GFM): https://guides.github.com/features/mastering-markdown/
data: Additional data for the card.
compact: In compact mode markdown content takes less screen space. Defaults to True.
compact: Make spacing tighter. Defaults to True.
commands: Contextual menu commands for this component.
Returns:
A `h2o_wave.types.MarkdownCard` instance.
Expand Down
2 changes: 1 addition & 1 deletion r/R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -3948,7 +3948,7 @@ ui_list_item1_card <- function(
#' @param title The title for this card.
#' @param content The markdown content. Supports Github Flavored Markdown (GFM): https://guides.github.com/features/mastering-markdown/
#' @param data Additional data for the card.
#' @param compact In compact mode markdown content takes less screen space. Defaults to True.
#' @param compact Make spacing tighter. Defaults to True.
#' @param commands Contextual menu commands for this component.
#' @return A MarkdownCard instance.
#' @export
Expand Down
2 changes: 1 addition & 1 deletion ui/src/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ interface State {
**/
data?: Rec
/**
* In compact mode markdown content takes less screen space. Defaults to True.
* Make spacing tighter. Defaults to True.
**/
compact?: B
}
Expand Down

0 comments on commit b8804cb

Please sign in to comment.