Skip to content

Commit

Permalink
update changelog, fix #668
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 26, 2024
1 parent e2418eb commit a2f6b57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ version 1.2.0
version 1.1.3
---------------------------

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

version 1.1.2
---------------------------
Expand Down
12 changes: 6 additions & 6 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -4363,12 +4363,12 @@ task python_strip {
}
command<<<
python <<CODE
python <<CODE
with open("~{infile}") as fp:
for line in fp:
if not line.startswith('#'):
print(line.strip())
CODE
CODE
>>>
output {
Expand Down Expand Up @@ -4404,10 +4404,10 @@ Given an `infile` value of `/path/to/file`, the execution engine will produce th

```sh
python <<CODE
with open("/path/to/file") as fp:
for line in fp:
if not line.startswith('#'):
print(line.strip())
with open("/path/to/file") as fp:
for line in fp:
if not line.startswith('#'):
print(line.strip())
CODE
```

Expand Down

0 comments on commit a2f6b57

Please sign in to comment.