Skip to content
This repository was archived by the owner on Feb 20, 2022. It is now read-only.

Commit 7fab159

Browse files
committed
unnecessary extra space after pound sign in comment fixed
1 parent 23a3e7c commit 7fab159

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@
4545
py_details = {'name' : 'Python3',
4646
'path' : LANG_PATH,
4747
'scope': 'python.3',
48-
'comments' : {'lines': '# '},
48+
'comments' : {'lines': '#'},
4949
'test_name': 'Python3_TEST',
5050
'test_path': '~/.config/sublime-text-3/Packages/User/Python3_TEST'}
5151

5252
cy_details = {'name' : 'Cython',
5353
'path' : LANG_PATH,
5454
'scope': 'cython',
55-
'comments' : {'lines': '# '},
55+
'comments' : {'lines': '#'},
5656
'test_name': 'Cython_TEST',
5757
'test_path': '~/.config/sublime-text-3/Packages/User/Cython_TEST'}
5858

langs/Comments(Cython).tmPreferences

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<key>name</key>
1515
<string>TM_COMMENT_START</string>
1616
<key>value</key>
17-
<string># </string>
17+
<string># </string>
1818
</dict>
1919
</array>
2020
</dict>

langs/Comments(Python3).tmPreferences

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<key>name</key>
1515
<string>TM_COMMENT_START</string>
1616
<key>value</key>
17-
<string># </string>
17+
<string># </string>
1818
</dict>
1919
</array>
2020
</dict>

0 commit comments

Comments
 (0)