diff --git a/homeassistant/components/recorder/pool.py b/homeassistant/components/recorder/pool.py index 9ee89d248cc..b30237f98da 100644 --- a/homeassistant/components/recorder/pool.py +++ b/homeassistant/components/recorder/pool.py @@ -5,7 +5,7 @@ from sqlalchemy.pool import NullPool, StaticPool class RecorderPool(StaticPool, NullPool): - """A hybird of NullPool and StaticPool. + """A hybrid of NullPool and StaticPool. When called from the creating thread acts like StaticPool When called from any other thread, acts like NullPool