Skip to content

fix a couple of spelling typos #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ cd libs
gomobile bind --target=android github.com/adieu/flutter_go/go/plugin github.com/adieu/flutter_go/go/channel github.com/adieu/flutter_go/go/channel/types
```

Build and test if it works. If everyhing goes well, you could call go functions in your flutter app.
Build and test if it works. If everything goes well, you could call go functions in your flutter app.

Whenever you modified the go code, you have to regenerate the native module with gomobile again.

Expand All @@ -79,7 +79,7 @@ Next you have to create a new go package for flutter_go with these requirements:
- The package doesn't contain code which gomobile cannot process

We suggest to keep this module minimal. You could include other Go modules
or doing some initailization in the Bootstrap function.
or doing some initialization in the Bootstrap function.

Your business logic should be exposed through the rpc package.

Expand Down