summaryrefslogtreecommitdiff
path: root/coverage/sqldata.py
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-08 00:55:15 +1000
committerMin ho Kim <minho42@gmail.com>2019-07-08 00:55:15 +1000
commit48f996ff8dcccfefe0922fafc070b36f980c231e (patch)
tree20630cce176c814b27d2c51ecacce85f1adbda86 /coverage/sqldata.py
parent2c4c254a32e27c24b7714d541bd41eef97c375b5 (diff)
downloadpython-coveragepy-git-48f996ff8dcccfefe0922fafc070b36f980c231e.tar.gz
Fix typo
Diffstat (limited to 'coverage/sqldata.py')
-rw-r--r--coverage/sqldata.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/sqldata.py b/coverage/sqldata.py
index 03a352ba..cc871950 100644
--- a/coverage/sqldata.py
+++ b/coverage/sqldata.py
@@ -331,7 +331,7 @@ class CoverageSqliteData(SimpleReprMixin):
def touch_file(self, filename, plugin_name=""):
"""Ensure that `filename` appears in the data, empty if needed.
- `plugin_name` is the name of the plugin resposible for this file. It is used
+ `plugin_name` is the name of the plugin responsible for this file. It is used
to associate the right filereporter, etc.
"""
self._start_using()
@@ -680,7 +680,7 @@ class Sqlite(SimpleReprMixin):
# It can happen that Python switches threads while the tracer writes
# data. The second thread will also try to write to the data,
# effectively causing a nested context. However, given the indempotent
- # nature of the tracer operations, sharing a conenction among threads
+ # nature of the tracer operations, sharing a connection among threads
# is not a problem.
self.con = sqlite3.connect(filename, check_same_thread=False)