Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stdlib/public/Concurrency/Task+immediate.swift.gyb
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ import Swift
extension Task where Failure == ${FAILURE_TYPE} {

% if IS_DETACHED:
/// Create and immediately start running a new task in the context of the calling thread/task.
% else:
/// Create and immediately start running a new detached task in the context of the calling thread/task.
% else:
/// Create and immediately start running a new task in the context of the calling thread/task.
% end # IS_DETACHED
///
/// This function _starts_ the created task on the calling context.
Expand Down