Fix outgoing link to snappy in the FFI guide

Google have migrated snappy to GitHub.
This commit is contained in:
Tom Jakubowski 2014-05-30 21:27:47 -07:00
parent cc4513202d
commit 7cd4879126
1 changed files with 2 additions and 2 deletions

View File

@ -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: