diff --git a/README.md b/README.md index 53efd8a4e840e75424633b17e727b6b267a335a3..ccea68f48ae13257344e136a774bd77448bd387d 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