Skip to content

Commit a2f6b57

Browse files
committed
update changelog, fix #668
1 parent e2418eb commit a2f6b57

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ version 1.2.0
9292
version 1.1.3
9393
---------------------------
9494

95-
* Fix issues with examples (#653, #654, #661, #662, #663, #664, #666). Thanks to @stxue1!
95+
* Fix issues with examples (#653, #654, #661, #662, #663, #664, #666,, #668). Thanks to @stxue1!
9696

9797
version 1.1.2
9898
---------------------------

SPEC.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4363,12 +4363,12 @@ task python_strip {
43634363
}
43644364
43654365
command<<<
4366-
python <<CODE
4366+
python <<CODE
43674367
with open("~{infile}") as fp:
43684368
for line in fp:
43694369
if not line.startswith('#'):
43704370
print(line.strip())
4371-
CODE
4371+
CODE
43724372
>>>
43734373
43744374
output {
@@ -4404,10 +4404,10 @@ Given an `infile` value of `/path/to/file`, the execution engine will produce th
44044404

44054405
```sh
44064406
python <<CODE
4407-
with open("/path/to/file") as fp:
4408-
for line in fp:
4409-
if not line.startswith('#'):
4410-
print(line.strip())
4407+
with open("/path/to/file") as fp:
4408+
for line in fp:
4409+
if not line.startswith('#'):
4410+
print(line.strip())
44114411
CODE
44124412
```
44134413

0 commit comments

Comments
 (0)