diff options
author | Koki Saito <saitoto828@gmail.com> | 2023-12-29 23:47:07 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-29 14:47:07 +0000 |
commit | be1a0a0b2b871c3d72536ee1eea5521c6214d637 (patch) | |
tree | 1dddc83cdbfca0ba402a64dd0b54d61c19b80797 /docs | |
parent | f77554bfa37ad9db085619363f769192b8141ea3 (diff) | |
download | servo-be1a0a0b2b871c3d72536ee1eea5521c6214d637.tar.gz servo-be1a0a0b2b871c3d72536ee1eea5521c6214d637.zip |
fix: add a missing dot in HACKING_QUICKSTART.md (#30958)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HACKING_QUICKSTART.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HACKING_QUICKSTART.md b/docs/HACKING_QUICKSTART.md index 1c811d45364..65dbd5ca6af 100644 --- a/docs/HACKING_QUICKSTART.md +++ b/docs/HACKING_QUICKSTART.md @@ -140,7 +140,7 @@ Both folder are git repositories. To make it so that servo uses `~/my-projects/mozjs/`, first ascertain which version of the crate Servo is using and whether it is a git dependency or one from crates.io. -Both information can be found using, in this example, `/mach cargo pkgid mozjs_sys`(`mozjs_sys` is the actual crate name, which doesn't necessarily match the repo folder name). +Both information can be found using, in this example, `./mach cargo pkgid mozjs_sys`(`mozjs_sys` is the actual crate name, which doesn't necessarily match the repo folder name). If the output is in the format `https://github.com/servo/mozjs#mozjs_sys:0.0.0`, you are dealing with a git dependency and you will have to edit the `~/my-projects/servo/Cargo.toml` file and add at the bottom: |