From acd36360dc08dfafd98247536a1f9f099e3ac3b1 Mon Sep 17 00:00:00 2001 From: Matteo Bertini Date: Sat, 31 Dec 2016 11:06:16 +0100 Subject: [PATCH] Fix typo: Mac OS `dynlib` -> `dylib` Closes #73 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8aadcbcf..c93d594b 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ fn hello(py: Python) -> PyResult<()> { Example library with python bindings: The following two files will build with `cargo build`, and will generate a python-compatible library. -On Mac OS, you will need to rename the output from \*.dynlib to \*.so. +On Mac OS, you will need to rename the output from \*.dylib to \*.so. On Windows, you will need to rename the output from \*.dll to \*.pyd. **`Cargo.toml`:**