diff --git a/.gitignore b/.gitignore index 9208baf..19231ce 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ *.swp *.swo .cargo +.vscode +rls*.log diff --git a/src/lib.rs b/src/lib.rs index c1c736b..c383bc6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! serialization strategy. //! //! There are simple functions for encoding to `Vec` 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`. //!