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 c5c7c0f commit caff59d
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 @@ -45,7 +45,7 @@ version development
version 1.1.3
---------------------------

* Fix issues with examples (#653, #654, #661, #662, #663, #664, #665, #666). Thanks to @stxue1!
* Fix issues with examples (#653, #654, #661, #662, #663, #664, #665, #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 @@ -3609,12 +3609,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 @@ -3650,10 +3650,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 caff59d

Please sign in to comment.