diff options
Diffstat (limited to 'std/encoding/_yaml/loader/loader.ts')
-rw-r--r-- | std/encoding/_yaml/loader/loader.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/_yaml/loader/loader.ts b/std/encoding/_yaml/loader/loader.ts index 8bd623347..322f5ce0d 100644 --- a/std/encoding/_yaml/loader/loader.ts +++ b/std/encoding/_yaml/loader/loader.ts @@ -667,7 +667,7 @@ function readDoubleQuotedScalar( if (isEOL(ch)) { skipSeparationSpace(state, false, nodeIndent); - // TODO: rework to inline fn with no type cast? + // TODO(bartlomieju): rework to inline fn with no type cast? } else if (ch < 256 && simpleEscapeCheck[ch]) { state.result += simpleEscapeMap[ch]; state.position++; |