Skip to content

Commit c3fb9a8

Browse files
committed
style(cli): drop unnecessary ## escape inside a // comment
Trivial follow-up to Reviewer A round 2 on #2699. `##` is CFML's escape for emitting a literal `#` in evaluated output, but `//` line comments are not evaluated — so `##2699` inside a `//` comment is just noise. Single `#2699` is correct (and would auto-link if the comment ever ended up in rendered output). No behavior change.
1 parent fe834a8 commit c3fb9a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/lucli/tests/specs/commands/DeployCommandSpec.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ component extends="wheels.wheelstest.system.BaseSpec" {
110110
// fires before the keys check inside DeploySecretsCli.fetch, so
111111
// this doesn't prove every key landed in opts.keys (only a real
112112
// adapter could verify the full slice — see Reviewer A on PR
113-
// ##2699). What it does prove: the `for fsi=2 to arrayLen` loop
113+
// #2699). What it does prove: the `for fsi=2 to arrayLen` loop
114114
// completes without crashing on a non-trivial positional list
115115
// (off-by-one would manifest here as a CFML index-out-of-range,
116116
// not UnknownAdapter). Mirror coverage to the `exec` smoke test

0 commit comments

Comments
 (0)