Skip to content

Commit

Permalink
(puppetlabsGH-289) Fix block comment characters
Browse files Browse the repository at this point in the history
This commit uses the correct block comment characters as per puppet
specifications.
  • Loading branch information
jpogran committed Jul 3, 2018
1 parent baf25a6 commit 5ecfae4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -23,6 +23,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- ([GH-241](https://github.com/lingua-pupuli/puppet-vscode/issues/241)) Honor specified tcp port
- ([GH-240](https://github.com/lingua-pupuli/puppet-vscode/issues/240)) Add TCP retry functionality
- ([GH-296](https://github.com/lingua-pupuli/puppet-vscode/issues/296)) Set document file scheme
- ([GH-289](https://github.com/lingua-pupuli/puppet-vscode/issues/289)) Fix autoindenting for DSL

## 0.10.0 - 2018-03-29

Expand Down
2 changes: 1 addition & 1 deletion languages/puppet-language-configuration.json
Expand Up @@ -3,7 +3,7 @@
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "#",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": ["#"]
"blockComment": ["/*","*/"]
},
// symbols used as brackets
"brackets": [
Expand Down

0 comments on commit 5ecfae4

Please sign in to comment.