Auto merge of #107 - Phaiax:readme-url, r=japaric

Fix url in readme
master
bors 2016-10-15 10:25:53 -07:00 committed by GitHub
commit 6f7861b577
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ this crate ends up, as long as it's there):
``` toml
[dependencies]
compiler-builtins = { git = "https://github.com/rustc-lang-nursery/compiler-builtins" }
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins" }
```
If you still get an "undefined reference to $INTRINSIC" error after that change,
@ -34,8 +34,8 @@ this intrinsic you can temporarily enable a fallback to the actual compiler-rt
implementation as well for unimplemented intrinsics:
```toml
[dependencies.compiler-builtins]
git = "https://github.com/rustc-lang-nursery/compiler-builtins"
[dependencies.compiler_builtins]
git = "https://github.com/rust-lang-nursery/compiler-builtins"
features = ["c"]
```