Merge pull request #1049 from MrBrain295/Double-quotes

Migrate to double quotes
This commit is contained in:
MrBrain295
2021-08-18 14:04:46 -05:00
committed by GitHub
8 changed files with 8 additions and 8 deletions

View File

@@ -1,2 +1,2 @@
<?hh
echo 'Hello World';
echo "Hello World";

View File

@@ -1,3 +1,3 @@
module.exports = (robot) ->
robot.respond /hello/i, (msg) ->
msg.send 'Hello World'
msg.send "Hello World"