From c8d5169dc4b30e505789c577e073d711ad41ae77 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Sun, 5 Apr 2015 17:52:10 -0500 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6e36d35..b8d8342c 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Delve can insert breakpoints via the `breakpoint` command once inside a debug se Once inside a debugging session, the following commands may be used: -* `break` - Set break point at the entry point of a function, or at a specific file/line. Example: `break foo.go:13`. +* `break` - Set a breakpoint. Example: `break foo.go:13` or `break main.main`. * `continue` - Run until breakpoint or program termination.