You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2019/01/14 10:28:44 UTC

[flink] branch master updated: [hotfix] Fix typo in restart strategies documenation (#7479)

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 7206d20  [hotfix] Fix typo in restart strategies documenation (#7479)
7206d20 is described below

commit 7206d20f00790801514b2a894814175ea8c5e372
Author: Benchao Li <li...@gmail.com>
AuthorDate: Mon Jan 14 18:28:36 2019 +0800

    [hotfix] Fix typo in restart strategies documenation (#7479)
---
 docs/dev/restart_strategies.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/dev/restart_strategies.md b/docs/dev/restart_strategies.md
index 49419e1..5be430e 100644
--- a/docs/dev/restart_strategies.md
+++ b/docs/dev/restart_strategies.md
@@ -264,7 +264,7 @@ env.setRestartStrategy(RestartStrategies.noRestart())
 ### Fallback Restart Strategy
 
 The cluster defined restart strategy is used. 
-This helpful for streaming programs which enable checkpointing.
-Per default, a fixed delay restart strategy is chosen if there is no other restart strategy defined.
+This is helpful for streaming programs which enable checkpointing.
+By default, a fixed delay restart strategy is chosen if there is no other restart strategy defined.
 
 {% top %}