mrdimidium / nanoid

A tiny, secure, URL-friendly, unique string ID generator for Rust
https://docs.rs/nanoid
MIT License
545 stars 29 forks source link

Fix alphabet example in Rust doc comment. #27

Closed insertish closed 2 years ago

insertish commented 3 years ago

The documentation incorrectly specifies tilde (~) instead of hyphen (-). PR changes A-Za-z0-9_~ to A-Za-z0-9_- in Rust doc comment.

This tripped me up when writing a Regex for a nanoid, probably because it's late at night, I'm sure someone else will appreciate this too. Thank you.