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

service/dap: fix typos in comments #3426

Merged
merged 1 commit into from
Jun 20, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion service/dap/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ func (s *Session) address() string {
// until it encounters an error or EOF, when it sends
// a disconnect signal and returns.
func (s *Session) ServeDAPCodec() {
// Close conn, but not the debugger in case we are in AcceptMuli mode.
// Close conn, but not the debugger in case we are in AcceptMulti mode.
// If not, debugger will be shut down in Stop().
defer s.conn.Close()
reader := bufio.NewReader(s.conn)
Expand Down
2 changes: 1 addition & 1 deletion service/dap/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ func checkChildren(t *testing.T, got *dap.VariablesResponse, parentName string,

// checkVar is a helper for verifying the values within a VariablesResponse.
//
// i - index of the variable within VariablesRespose.Body.Variables array (-1 will search all vars for a match)
// i - index of the variable within VariablesResponse.Body.Variables array (-1 will search all vars for a match)
// name - name of the variable
// evalName - fully qualified variable name or alternative expression to load this variable
// value - the value of the variable
Expand Down