diff --git a/README.md b/README.md index 902a588..b739bd2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Smallbigint [![Docs.rs link](https://docs.rs/smallbigint/badge.svg)](https://docs.rs/smallbigint) +[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) A wrapper around `num_bigint::BigUint` and `num_bigint::BigInt` that stays out of the heap for small values. @@ -8,7 +9,7 @@ stays out of the heap for small values. In the current implementation, we go to the heap for anything that doesn't fit in 32 bits. -This crate is already has a lot of relevant methods, but it is not really complete +This crate already has a lot of relevant methods, but it is not really complete yet. Patches are welcome! ## To do, and important: diff --git a/src/lib.rs b/src/lib.rs index fa2831e..2834db4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! In the current implementation, we go to the heap for anything that //! doesn't fit in 32 bits. //! -//! This crate is already has a lot of relevant methods, but it is not really complete +//! This crate already has a lot of relevant methods, but it is not really complete //! yet. Patches are welcome! //! //! ## To do, and important: