Browse Source

Update README.md

Vova Tkach 5 years ago
parent
commit
cc864141c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -84,4 +84,4 @@ type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Ifac
 func App(t time.Duration, f CallbackFunc)
 ```
 
-**t** in `App` function is a timeout for `Shutdown` function, if Shutdown function will be not closed, context will be canceled afetr this value and will print error to console.
+**t** in `App` function is a timeout for `Shutdown` function, if Shutdown function will be not closed, context will be canceled afetr this value and will print error to console. **f** - is function for main application code with cancel context inside, `ctx` will be triggered when application got one of close/terminate signals and we can terminate application by calling `shutdown` function.