commit | ff7058162b0ba3549ef603e20b33c588971855ec | [log] [tgz] |
---|---|---|
author | Danny Tuppeny <danny@tuppeny.com> | Wed Jan 19 20:36:23 2022 +0000 |
committer | Ben Konyi <bkonyi@google.com> | Wed Jan 19 20:36:23 2022 +0000 |
tree | 028dfb89266d309de24270a5dfbf517edbf5b6c4 | |
parent | f0998196bbc03f4d83eb15ad69984ad5834462c7 [diff] |
[dds] Fix misleading type in DAP comment Change-Id: Ia79ec0ea3b7191619b905af91d7ff49fa1447753 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/228921 Reviewed-by: Ben Konyi <bkonyi@google.com>
diff --git a/pkg/dds/lib/src/dap/utils.dart b/pkg/dds/lib/src/dap/utils.dart index 8dcfbae..c455837 100644 --- a/pkg/dds/lib/src/dap/utils.dart +++ b/pkg/dds/lib/src/dap/utils.dart
@@ -21,7 +21,7 @@ /// was necessarily a stack frame or that calling `toString` will return the /// original input text. stack.Frame? parseStackFrame(String line) { - // Because we split on \r, on Windows there may be trailing \r which prevents + // Because we split on \n, on Windows there may be trailing \r which prevents // package:stack_trace from parsing correctly. line = line.trim();