Fix typo in learning path#13413
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
| title: list.title, | ||
| builder: (context) => ContactListsPage(listId: list.id), | ||
| ), | ||
| ); |
There was a problem hiding this comment.
There was a problem hiding this comment.
This seems correct. It's not the end of a statement so it can't be a semicolon (;).
parlough
left a comment
There was a problem hiding this comment.
Thanks for the PR! However, it seems the original code being a comma seems correct. Changing it to a semicolon will result in an error.
Could you provide some details on what issue you were hitting that prompted this change? Thanks!
| title: list.title, | ||
| builder: (context) => ContactListsPage(listId: list.id), | ||
| ), | ||
| ); |
There was a problem hiding this comment.
This seems correct. It's not the end of a statement so it can't be a semicolon (;).
Fix typo in step 2 code sample