Skip to content

Commit

Permalink
Merge pull request #111 from artichoke/doc/typo-missing-period
Browse files Browse the repository at this point in the history
Fix missing period at end of sentence in SymbolTable::new docs
  • Loading branch information
lopopolo authored Nov 19, 2021
2 parents 0cb2a6a + c02c154 commit b4d425e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "intaglio"
version = "1.4.1" # remember to set `html_root_url` in `src/lib.rs`.
version = "1.4.2" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ impl SymbolTable<RandomState> {
/// Constructs a new, empty `SymbolTable` with [default capacity].
///
/// This function will always allocate. To construct a symbol table without
/// allocating, call [`SymbolTable::with_capacity(0)`]
/// allocating, call [`SymbolTable::with_capacity(0)`].
///
/// # Examples
///
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
//! - **bytes** - Enables an additional symbol table implementation for
//! interning byte strings (`Vec<u8>` and `&'static [u8]`).

#![doc(html_root_url = "https://docs.rs/intaglio/1.4.1")]
#![doc(html_root_url = "https://docs.rs/intaglio/1.4.2")]

// Ensure code blocks in README.md compile
#[cfg(doctest)]
Expand Down
2 changes: 1 addition & 1 deletion src/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ impl SymbolTable<RandomState> {
/// Constructs a new, empty `SymbolTable` with [default capacity].
///
/// This function will always allocate. To construct a symbol table without
/// allocating, call [`SymbolTable::with_capacity(0)`]
/// allocating, call [`SymbolTable::with_capacity(0)`].
///
/// # Examples
///
Expand Down

0 comments on commit b4d425e

Please sign in to comment.