Skip to content

Commit c4237db

Browse files
willtebbuttmhauru
andauthored
Apply suggestions from code review
Co-authored-by: Markus Hauru <[email protected]>
1 parent 1198038 commit c4237db

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/Testing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
version:
1414
- '1.10'
1515
- '1'
16-
- 'nightly'
16+
- 'pre'
1717
os:
1818
- ubuntu-latest
1919
- windows-latest

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Libtask is best explained by the docstring for [`TapedTask`](@ref):
55
Libtask.TapedTask
66
```
77

8-
The functions discussed the above docstring (in addition to [`TapedTask`](@ref) itself) form the
8+
The functions discussed in the above docstring (in addition to [`TapedTask`](@ref) itself) form the
99
public interface of Libtask.jl.
1010
They divide neatly into two kinds of functions: those which are used to manipulate
1111
[`TapedTask`](@ref)s, and those which are intended to be used _inside_ a

src/copyable_task.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ When called from inside a call to a `TapedTask`, this will return whatever is co
55
its `taped_globals` field.
66
77
The type `T` is required for optimal performance. If you know that the result of this
8-
operation must return a specific type, specific `T`. If you do not know what type it will
8+
operation must return a specific type, specify `T`. If you do not know what type it will
99
return, pass `Any` -- this will typically yield type instabilities, but will run correctly.
1010
1111
See also [`set_taped_globals!`](@ref).
@@ -242,7 +242,7 @@ Base.copy(t::T) where {T<:TapedTask} = deepcopy(t)
242242
consume(t::TapedTask)
243243
244244
Run `t` until it makes a call to `produce`. If this is the first time that `t` has been
245-
called, it start execution from the entry point. If `consume` has previously been called on
245+
called, it starts execution from the entry point. If `consume` has previously been called on
246246
`t`, it will resume from the last `produce` call. If there are no more `produce` calls,
247247
`nothing` will be returned.
248248
"""

0 commit comments

Comments
 (0)