Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sagudev committed May 2, 2022
1 parent a6506b0 commit fb37ba7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion book/src/tutorial_with_flutter.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ git clone https://github.com/fzyzcjy/flutter_rust_bridge && cd flutter_rust_brid

This step is optional, since I have generated the source code already (in quickstart). Even if you do it, you should not see anything changed.

Firstly, you may need to install dependencie of this library:
Firstly, you may need to install dependencies of this library:

* Install `ffigen`: `dart pub global activate ffigen`, and [install LLVM](https://pub.dev/packages/ffigen#installing-llvm) which is required by `ffigen`.
* Install the codegen program: `cargo install flutter_rust_bridge_codegen`.
Expand Down
2 changes: 1 addition & 1 deletion frb_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["flutter", "dart", "ffi", "code-generation", "bindings"]
categories = ["development-tools::ffi"]

[lib]
name = "lib_lutter_rust_bridge_codegen"
name = "lib_flutter_rust_bridge_codegen"
path = "src/lib.rs"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion frb_codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use env_logger::Env;
use log::info;
use structopt::StructOpt;

use lib_lutter_rust_bridge_codegen::{frb_codegen, Opts};
use lib_flutter_rust_bridge_codegen::{frb_codegen, Opts};

fn main() {
let opts = Opts::from_args();
Expand Down
2 changes: 1 addition & 1 deletion frb_example/pure_dart/rust/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use lib_lutter_rust_bridge_codegen::{frb_codegen, Opts};
use lib_flutter_rust_bridge_codegen::{frb_codegen, Opts};

/// Path of input Rust code
const RUST_INPUT: &str = "src/api.rs";
Expand Down

0 comments on commit fb37ba7

Please sign in to comment.