@ -639,7 +639,7 @@ dependencies = [
[[package]]
name = "markov"
version = "0.6.2"
version = "0.6.3"
dependencies = [
"async-compression",
"cfg-if 1.0.0",
@ -1,6 +1,6 @@
[package]
description = "Generate string of text from Markov chain fed by stdin"
authors = ["Avril <flanchan@cumallover.me>"]
edition = "2018"
@ -25,7 +25,7 @@ macro_rules! new {
};
}
const DEFAULT_BOUNDARIES: &[char] = &['\n', '.', ':', '!'];
const DEFAULT_BOUNDARIES: &[char] = &['\n', '.', ':', '!', '?'];
lazy_static! {
static ref BOUNDARIES: smallmap::Map<char, ()> = {