From a59fc4485df1191a8efaeae92e780e9f0710484e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 29 Sep 2022 06:25:18 -0400 Subject: docs: minor tweaks to db docs --- coverage/numbits.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage') diff --git a/coverage/numbits.py b/coverage/numbits.py index 9c49d55d..297795d9 100644 --- a/coverage/numbits.py +++ b/coverage/numbits.py @@ -142,8 +142,8 @@ def register_sqlite_functions(connection): conn = sqlite3.connect('example.db') register_sqlite_functions(conn) c = conn.cursor() - # Kind of a nonsense query: find all the files and contexts that - # executed line 47 in any file: + # Kind of a nonsense query: + # Find all the files and contexts that executed line 47 in any file: c.execute( "select file_id, context_id from line_bits where num_in_numbits(?, numbits)", (47,) -- cgit v1.2.1