sentance delimit

serve
Avril 4 years ago
parent c1e60503a6
commit 1d482029f3
Signed by: flanchan
GPG Key ID: 284488987C31F630

2
Cargo.lock generated

@ -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]
name = "markov"
version = "0.6.2"
version = "0.6.3"
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, ()> = {

Loading…
Cancel
Save