1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-29 03:51:35 +02:00

Update depending-on-a-crate.md (#1570)

Fix typo
This commit is contained in:
Adrian Taylor
2023-12-08 15:07:13 +00:00
committed by GitHub
parent 89b41555eb
commit 4a576fd436

View File

@ -8,7 +8,7 @@ Specifically,
```bob ```bob
+------------+ +----------------------+ +------------+ +----------------------+
"//third_party/rust" | crate name | "/v" | major semver version | "/:lib" "//third_party/rust" | crate name | "/v" | major semver version | ":lib"
+------------+ +----------------------+ +------------+ +----------------------+
``` ```
@ -20,4 +20,4 @@ rust_static_library("my_rust_lib") {
sources = [ "lib.rs" ] sources = [ "lib.rs" ]
deps = [ "//third_party/rust/example_rust_crate/v1:lib" ] deps = [ "//third_party/rust/example_rust_crate/v1:lib" ]
} }
``` ```