Skip to content

Commit

Permalink
storage/reflink: clarify comment
Browse files Browse the repository at this point in the history
(cherry picked from commit 1b09528)
  • Loading branch information
rustybird authored and marmarek committed Oct 22, 2020
1 parent 16f597a commit f74c9ef
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 @@ -43,9 +43,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 f74c9ef

Please sign in to comment.