Skip to content

Commit ffb50d2

Browse files
committed
Some output id parameters were documented as input id.
1 parent 80ee095 commit ffb50d2

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

shiny/experimental/ui/_output.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def output_plot(
4747
Parameters
4848
----------
4949
id
50-
An input id.
50+
An output id.
5151
width
5252
The CSS width, e.g. '400px', or '100%'.
5353
height
@@ -138,7 +138,7 @@ def output_image(
138138
Parameters
139139
----------
140140
id
141-
An input id.
141+
An output id.
142142
width
143143
The CSS width, e.g. '400px', or '100%'.
144144
height
@@ -245,7 +245,7 @@ def output_ui(
245245
Parameters
246246
----------
247247
id
248-
An input id.
248+
An output id.
249249
inline
250250
If ``True``, the result is displayed inline
251251
container

shiny/ui/_output.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def output_plot(
4949
Parameters
5050
----------
5151
id
52-
An input id.
52+
An output id.
5353
width
5454
The CSS width, e.g. '400px', or '100%'.
5555
height
@@ -127,7 +127,7 @@ def output_image(
127127
Parameters
128128
----------
129129
id
130-
An input id.
130+
An output id.
131131
width
132132
The CSS width, e.g. '400px', or '100%'.
133133
height
@@ -223,7 +223,7 @@ def output_text(
223223
Parameters
224224
----------
225225
id
226-
An input id.
226+
An output id.
227227
inline
228228
If ``True``, the result is displayed inline
229229
container
@@ -260,7 +260,7 @@ def output_text_verbatim(id: str, placeholder: bool = False) -> Tag:
260260
Parameters
261261
----------
262262
id
263-
An input id.
263+
An output id.
264264
placeholder
265265
If the output is empty or ``None``, should an empty rectangle be displayed to
266266
serve as a placeholder? (does not affect behavior when the output is nonempty)
@@ -292,7 +292,7 @@ def output_table(id: str, **kwargs: TagAttrValue) -> Tag:
292292
Parameters
293293
----------
294294
id
295-
An input id.
295+
An output id.
296296
**kwargs
297297
Additional attributes to add to the container.
298298
@@ -320,7 +320,7 @@ def output_ui(
320320
Parameters
321321
----------
322322
id
323-
An input id.
323+
An output id.
324324
inline
325325
If ``True``, the result is displayed inline
326326
container

0 commit comments

Comments
 (0)