Commit d5a7e8e
authored
fix(amazonq inline suggest): wrongly formatted supplemental context #5963
List of fixes:
- `def func (a) :` -> `def func(a):`
- `class (A) :` -> `class(A):`
- for python, change `// Function definitions to # Function definitions`
,` // Class definitions` to `# Class definitions`
- for js/ts: `function findMax (arr: number[]) : number | undefined{.`
-> `function findMax(arr: number[]): number | undefined {.`
- for all language: `// File path: a.ts` -> `//File path a.ts`
- for js/ts: `String privateString ;` -> `String privateString;`1 parent acfdb61 commit d5a7e8e
File tree
2 files changed
+5
-1
lines changed- packages
- amazonq/.changes/next-release
- core/src/amazonq/lsp
2 files changed
+5
-1
lines changedLines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
0 commit comments