From 7cd48791266d78f0db501afeeaa2286d8f608503 Mon Sep 17 00:00:00 2001 From: Tom Jakubowski Date: Fri, 30 May 2014 21:27:47 -0700 Subject: [PATCH] Fix outgoing link to snappy in the FFI guide Google have migrated snappy to GitHub. --- src/doc/guide-ffi.md | 4 ++-- 1 file 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: -- GitLab