Skip to content

Commit

Permalink
service/dap: fix typos in comments (#3426)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear authored Jun 20, 2023
1 parent 656c4f1 commit 322a138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 322a138

Please sign in to comment.