Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix docs from merged PR1498 #1532

Merged
merged 1 commit into from Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions godoc-current.txt
Expand Up @@ -348,8 +348,9 @@ func (a *App) RunAndExitOnError()
code in the cli.ExitCoder

func (a *App) RunAsSubcommand(ctx *Context) (err error)
This is a stub function to keep public API unchanged from old code No one
should really use this. Always use a.Run to execute app
This is a stub function to keep public API unchanged from old code

Deprecated: use App.Run or App.RunContext

func (a *App) RunContext(ctx context.Context, arguments []string) (err error)
RunContext is like Run except it takes a Context that will be passed to
Expand Down
5 changes: 3 additions & 2 deletions testdata/godoc-v2.x.txt
Expand Up @@ -348,8 +348,9 @@ func (a *App) RunAndExitOnError()
code in the cli.ExitCoder

func (a *App) RunAsSubcommand(ctx *Context) (err error)
This is a stub function to keep public API unchanged from old code No one
should really use this. Always use a.Run to execute app
This is a stub function to keep public API unchanged from old code

Deprecated: use App.Run or App.RunContext

func (a *App) RunContext(ctx context.Context, arguments []string) (err error)
RunContext is like Run except it takes a Context that will be passed to
Expand Down