diff options
| author | bors <bors@rust-lang.org> | 2014-05-31 02:46:38 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-31 02:46:38 -0700 |
| commit | 2652ba1505051160b946830c69c960ed283851d8 (patch) | |
| tree | 0f1d0c4f3b7facd93f67699243ca8a4392009adc | |
| parent | faa7ba75a71b47151ed9b8c299d3fcc9af4207b5 (diff) | |
| parent | 7cd48791266d78f0db501afeeaa2286d8f608503 (diff) | |
| download | rust-2652ba1505051160b946830c69c960ed283851d8.tar.gz rust-2652ba1505051160b946830c69c960ed283851d8.zip | |
auto merge of #14555 : tomjakubowski/rust/fix-snappy-link, r=alexcrichton
Google have migrated snappy to GitHub.
| -rw-r--r-- | src/doc/guide-ffi.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide-ffi.md b/src/doc/guide-ffi.md index ad80f2b46c8..a7aca924610 100644 --- a/src/doc/guide-ffi.md +++ b/src/doc/guide-ffi.md @@ -2,11 +2,11 @@ # Introduction -This guide will use the [snappy](https://code.google.com/p/snappy/) +This guide will use the [snappy](https://github.com/google/snappy) compression/decompression library as an introduction to writing bindings for foreign code. Rust is currently unable to call directly into a C++ library, but snappy includes a C interface (documented in -[`snappy-c.h`](https://code.google.com/p/snappy/source/browse/trunk/snappy-c.h)). +[`snappy-c.h`](https://github.com/google/snappy/blob/master/snappy-c.h)). The following is a minimal example of calling a foreign function which will compile if snappy is installed: |
