From 599605f0b2a424466330893e3175c6c81f20ff98 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 29 Mar 2017 07:02:33 -0700 Subject: [PATCH] "main thread" not "main call" --- octodns/manager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/octodns/manager.py b/octodns/manager.py index 84fc075..8d8569a 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -39,10 +39,10 @@ class _AggregateTarget(object): class MainThreadExecutor(object): ''' - Dummy executor that runs things on the main call during the involcation of - submit, but still returns a future object with the result. This allows code - to be written to handle async, even in the case where we don't want to use - multiple threads/workers and would prefer that things flow as if + Dummy executor that runs things on the main thread during the involcation + of submit, but still returns a future object with the result. This allows + code to be written to handle async, even in the case where we don't want to + use multiple threads/workers and would prefer that things flow as if traditionally written. '''