Skip to content

Commit 1c5a065

Browse files
authored
typo
1 parent e329e0b commit 1c5a065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class MyForm extends AbstractBase {
5151
// Here we're just checking that $name matches a certain value.
5252
$valid = $name === 'Bob';
5353
if (!$valid) {
54-
$this->add_error($nameField['name'], 'Only people name Bob are worthy');
54+
$this->add_error($nameField['name'], 'Only people named Bob are worthy');
5555
}
5656
return $valid;
5757
}
@@ -302,4 +302,4 @@ Typical WordPress form plugins are useful for allowing site content admins to ge
302302

303303
By contrast, [extending Conifer's base Form class](#extendBaseClassExample) is all you need to do to get started with custom forms, and while our API has tons of functionality which will [help you render a form](#frontEndFormExample) on the front end of your site, you're free to define your own markup and styles. In other words:
304304

305-
![The power is yours!](https://i.giphy.com/fWfCYufxVgthCxLIHv.gif "The power is yours!")
305+
![The power is yours!](https://i.giphy.com/fWfCYufxVgthCxLIHv.gif "The power is yours!")

0 commit comments

Comments
 (0)