rename doc functions (#208)

* fix up docs
This commit is contained in:
Ty Overby 2017-10-10 16:41:27 -07:00 committed by GitHub
parent a9d5dc455d
commit 62941544ea
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -3,3 +3,5 @@
*.swp
*.swo
.cargo
.vscode
rls*.log

View File

@ -4,7 +4,7 @@
//! serialization strategy.
//!
//! There are simple functions for encoding to `Vec<u8>` and decoding from
//! `&[u8]`, but the meat of the library is the `encode_into` and `decode_from`
//! `&[u8]`, but the meat of the library is the `serialize_into` and `deserialize_from`
//! functions which respectively allow encoding into a `std::io::Writer`
//! and decoding from a `std::io::Buffer`.
//!