diff --git a/src/content/reference/en/p5/createRadio.mdx b/src/content/reference/en/p5/createRadio.mdx
index 12baaaf83b..1157de1b8c 100644
--- a/src/content/reference/en/p5/createRadio.mdx
+++ b/src/content/reference/en/p5/createRadio.mdx
@@ -10,8 +10,7 @@ description: >
let myRadio = createSelect('food')
, then each radio option will
- have "food"
as its name
parameter: .
+ have
"food"
as its name
parameter: .
If an existing
or
@@ -28,7 +27,7 @@ description: >
myRadio.option(value, [label])
adds an option to the menu.
- The first paremeter, value
, is a string that sets the option's
+ The first parameter, value
, is a string that sets the option's
value and label. The second parameter, label
, is optional. If
provided, it sets the label displayed for the value
. If an option
with value
already exists, its label is changed and its value is
@@ -45,9 +44,7 @@ description: >
href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/"
target="_blank">HTMLInputElement
.myRadio.disable(shouldDisable)
enables the entire radio
- button if true
is passed and disables it if false
is
- passed.myRadio.disable(shouldDisable)
Disables the radio button if true
is passed and enables it if false
is passed.