diff options
author | Rory Dudley | 2024-05-04 16:38:17 -0600 |
---|---|---|
committer | Rory Dudley | 2024-05-04 16:38:17 -0600 |
commit | 9b4785ce4f89ea50c00459f260f4a00050a6a48a (patch) | |
tree | aeb42da789672ea112625b4f46e837dd5c29f2ab | |
parent | 87e4a3da43e7d203d3405f977ce8e93298dd55c3 (diff) | |
download | dwarvish-9b4785ce4f89ea50c00459f260f4a00050a6a48a.tar.gz |
Remove some defunct code
Remove some defunct code that was previously used to check for special
runes.
-rw-r--r-- | src/poem/elements/rune.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/poem/elements/rune.rs b/src/poem/elements/rune.rs index 6db69c9..2307519 100644 --- a/src/poem/elements/rune.rs +++ b/src/poem/elements/rune.rs @@ -85,14 +85,6 @@ impl fmt::Display for Rune { } impl Rune { - // /// Check if a character is a special [Rune] - // pub fn special(rune: char) -> bool { - // match rune { - // ' ' | '/' | '$' | '\'' | '"' | '`' | '<' | '>' | '|' | '&' | ';' | '~' => true, - // _ => false, - // } - // } - /// Recite a verse with [Rune::None] /// /// Call this function on a [Verse] with a meter of type [Rune::None]. |