diff options
author | Dmitry Sharshakov | 2021-08-20 13:48:59 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-20 13:48:59 +0000 |
commit | c4970c617ed5f03dadce2a284b66539bf0ce3054 (patch) | |
tree | 7565b51c56e3a6ccb7e0700e2fa3859e263bdd3b /helix-dap | |
parent | a54b09e3fe6eaf72ab7a4f3664efc0b8b7cf13fd (diff) |
make CI green
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/examples/dap-dlv.rs | 2 | ||||
-rw-r--r-- | helix-dap/examples/dap-lldb.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/helix-dap/examples/dap-dlv.rs b/helix-dap/examples/dap-dlv.rs index bffca676..bb5b1963 100644 --- a/helix-dap/examples/dap-dlv.rs +++ b/helix-dap/examples/dap-dlv.rs @@ -56,7 +56,7 @@ pub async fn main() -> Result<()> { "breakpoints: {:#?}", client .set_breakpoints( - "/tmp/godebug/main.go".to_owned(), + "/tmp/godebug/main.go".into(), vec![SourceBreakpoint { line: 8, column: Some(2), diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs index c9a99548..5823b8bf 100644 --- a/helix-dap/examples/dap-lldb.rs +++ b/helix-dap/examples/dap-lldb.rs @@ -56,7 +56,7 @@ pub async fn main() -> Result<()> { "breakpoints: {:#?}", client .set_breakpoints( - "/tmp/cdebug/main.c".to_owned(), + "/tmp/cdebug/main.c".into(), vec![SourceBreakpoint { line: 6, column: Some(2), |