Skip to content

Commit

Permalink
Fix minor registration doc typo (#66)
Browse files Browse the repository at this point in the history
* Fix registration doc typo

* Fix profile doc typo
  • Loading branch information
brieucthomas authored and alexander-schranz committed Sep 4, 2017
1 parent 04f0582 commit 42aa5ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/doc/5-registration.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class RegistrationContactType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('firstName', TextType::class);
$builder->add('lastLame', TextType::class);
$builder->add('lastName', TextType::class);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/9-profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class ProfileContactType extends AbstractType
);

$builder->add('firstName', TextType::class);
$builder->add('lastLame', TextType::class);
$builder->add('lastName', TextType::class);
$builder->add('mainEmail', EmailType::class);
$builder->add('avatar', FileType::class, ['mapped' => false, 'required' => false]);

Expand Down

0 comments on commit 42aa5ca

Please sign in to comment.