Jonny Borges
Committed by GitHub

Merge pull request #674 from Goddchen/bugfix/documentation

Fix some typos in documentation
... ... @@ -219,7 +219,7 @@ void main() {
Send data on route name
```dart
Get.toNamed("/second/34954");
Get.toNamed("/profile/34954");
```
On second screen take the data by parameter
... ...
... ... @@ -357,7 +357,7 @@ class User() {
// on the controller file
final user = User().obs;
// when you need to update the user variable:
user.update( (user) { // this parameter is the class itself taht you want to update
user.update( (user) { // this parameter is the class itself that you want to update
user.name = 'Jonny';
user.age = 18;
});
... ...