Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eneoli committed Sep 4, 2024
1 parent 53d3faf commit edf9f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/domain/code-editor/components/code-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ function handleEditorWillMount(monaco: Monaco) {
[/\/\/.*$/, 'comment']
],
comment: [
[/[^\/*]+/, 'comment'],
[/[^/*]+/, 'comment'],
[/\*\//, 'comment', '@pop'],
[/[\/*]/, 'comment']
[/[/*]/, 'comment']
],
linecomment: [
[/.*[^\\]$/, 'comment', '@pop'],
Expand Down

0 comments on commit edf9f79

Please sign in to comment.