From e72d87ecf3d6b91cb3a1586415923aeae637e230 Mon Sep 17 00:00:00 2001 From: Mahmut Bulut Date: Wed, 29 Jan 2020 15:07:03 +0100 Subject: [PATCH] Changelog config (#161) * Changelog config * Reword documentation --- .auto-changelog | 6 ++++++ bastion/examples/restart_strategy.rs | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .auto-changelog diff --git a/.auto-changelog b/.auto-changelog new file mode 100644 index 0000000..98e4a98 --- /dev/null +++ b/.auto-changelog @@ -0,0 +1,6 @@ +{ + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": true, + "commitLimit": false +} \ No newline at end of file diff --git a/bastion/examples/restart_strategy.rs b/bastion/examples/restart_strategy.rs index ac9f40d..afc0f43 100644 --- a/bastion/examples/restart_strategy.rs +++ b/bastion/examples/restart_strategy.rs @@ -7,9 +7,9 @@ use bastion::prelude::*; /// /// Prologue: /// This examples demonstrates how to override the default restart strategy -/// on a custom, provided by the bastion crate. The supervisor will spawn +/// with a custom strategy, provided by the bastion crate. The supervisor will spawn /// the only one tracked actor that will be restarted a couple of times and -/// the certain timeout after a raised failure in the actor's code. +/// after certain timeout failure will arise from the actor's code. /// fn main() { Bastion::init();