diff --git a/conduwuit-example.toml b/conduwuit-example.toml index 095c00d0..f770de1f 100644 --- a/conduwuit-example.toml +++ b/conduwuit-example.toml @@ -1182,7 +1182,7 @@ # Allow sending read receipts to remote servers. # # Note that sending read receipts to remote servers in large rooms with -# lots of other homeservers may cause undue strain on the CPU and +# lots of other homeservers may cause additional strain on the CPU and # network. # #allow_outgoing_read_receipts = true @@ -1197,7 +1197,7 @@ # Allow outgoing typing updates to federation. # # Note that sending typing indicators to remote servers in large rooms -# with lots of other homeservers may cause undue strain on the CPU and +# with lots of other homeservers may cause additional strain on the CPU and # network. # #allow_outgoing_typing = true diff --git a/src/core/config/mod.rs b/src/core/config/mod.rs index db603ffe..004f7790 100644 --- a/src/core/config/mod.rs +++ b/src/core/config/mod.rs @@ -1375,7 +1375,7 @@ pub struct Config { /// Allow sending read receipts to remote servers. /// /// Note that sending read receipts to remote servers in large rooms with - /// lots of other homeservers may cause undue strain on the CPU and + /// lots of other homeservers may cause additional strain on the CPU and /// network. #[serde(default = "true_fn")] pub allow_outgoing_read_receipts: bool, @@ -1390,8 +1390,8 @@ pub struct Config { /// Allow outgoing typing updates to federation. /// /// Note that sending typing indicators to remote servers in large rooms - /// with lots of other homeservers may cause undue strain on the CPU and - /// network. + /// with lots of other homeservers may cause additional strain on the CPU + /// and network. #[serde(default = "true_fn")] pub allow_outgoing_typing: bool,