From dfff9b53842d216d24dda758e0cc967a3982024e Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 13 May 2015 15:00:43 -0500 Subject: [PATCH] Update README --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 53efd8a4..ccea68f4 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,6 @@ The makefile is only necessary to help facilitate the process of building and co See [Tips and troubleshooting](#tips-and-troubleshooting) for additional OS X setup information. -### Features - -* Attach to an already running process -* Launch a process and begin debug session -* Set breakpoints, single step, step over functions, print variable contents, print thread and goroutine information - ### Usage The debugger can be launched in three ways: @@ -76,7 +70,7 @@ The debugger can be launched in three ways: ### Breakpoints -Delve can insert breakpoints via the `breakpoint` command once inside a debug session, however for ease of debugging, you can also call `runtime.Breakpoint()` and Delve will handle the breakpoint and stop the program at the next source line. +Delve can insert breakpoints via the `breakpoint` command once inside a debug session, however for ease of debugging, you can also use the `runtime.Breakpoint()` function in your source code and Delve will handle the breakpoint and stop the program at the next source line. ### Commands -- GitLab