Skip to content

Commit

Permalink
Merge pull request onevcat#247 from frankctan/master
Browse files Browse the repository at this point in the history
fixed typo in documentation
onevcat committed Feb 21, 2016
2 parents 7e833ec + 46d5730 commit b45bbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ThreadHelper.swift
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ func dispatch_async_safely_to_main_queue(block: ()->()) {
dispatch_async_safely_to_queue(dispatch_get_main_queue(), block)
}

// This methd will dispatch the `block` to a specified `queue`.
// This method will dispatch the `block` to a specified `queue`.
// If the `queue` is the main queue, and current thread is main thread, the block
// will be invoked immediately instead of being dispatched.
func dispatch_async_safely_to_queue(queue: dispatch_queue_t, _ block: ()->()) {

0 comments on commit b45bbd5

Please sign in to comment.