Skip to content

Commit

Permalink
Update docstring for indoc!
Browse files Browse the repository at this point in the history
Before this commit, the docstring seemed to deny bytestring support.
I'm guessing it was written before bytestrings were supported.
  • Loading branch information
ilyagr authored Mar 23, 2024
1 parent 60b5fa2 commit 735ddcc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ enum Macro {
Concat,
}

/// Unindent and produce `&'static str`.
/// Unindent and produce `&'static str` or `&'static [u8]`.
///
/// Supports normal strings, raw strings, bytestrings, and raw bytestrings.
///
/// # Example
///
Expand Down

0 comments on commit 735ddcc

Please sign in to comment.