Skip to content

Commit

Permalink
storage/reflink: clarify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rustybird committed Jul 7, 2020
1 parent e188b93 commit 1b09528
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qubes/storage/reflink.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@


def _coroutinized(function):
''' Decorator transforming a synchronous function into a coroutine
that runs the function in the event loop's thread-based
default executor.
''' Wrap a synchronous function in a coroutine that runs the
function via the event loop's ThreadPool-based default
executor.
'''
@asyncio.coroutine
@functools.wraps(function)
Expand Down

0 comments on commit 1b09528

Please sign in to comment.