Skip to content

Commit

Permalink
fix copy paste typo in radioGroup example (#985)
Browse files Browse the repository at this point in the history
successor of #859
  • Loading branch information
adrianjost authored Sep 21, 2021
1 parent f3a305b commit 3b4fdd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/form/PDFForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export default class PDFForm {
* const form = pdfDoc.getForm()
* const radioGroup = form.getRadioGroup('Page1.Foo.RadioGroup[0]')
* const options = radioGroup.getOptions()
* dropdown.select(options[0])
* radioGroup.select(options[0])
* ```
* An error will be thrown if no field exists with the provided name, or if
* the field exists but is not a radio group.
Expand Down

0 comments on commit 3b4fdd9

Please sign in to comment.