Fix typo: Mac OS `dynlib` -> `dylib`

Closes #73
This commit is contained in:
Matteo Bertini 2016-12-31 11:06:16 +01:00 committed by GitHub
parent 623056d3ca
commit acd36360dc
1 changed files with 1 additions and 1 deletions

View File

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