Skip to content

Commit eca67be

Browse files
Fix quotes
1 parent bd86b3f commit eca67be

File tree

2 files changed

+4
-4
lines changed
  • instrumentation
    • opentelemetry-instrumentation-psycopg2/src/opentelemetry/instrumentation/psycopg2
    • opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg

2 files changed

+4
-4
lines changed

instrumentation/opentelemetry-instrumentation-psycopg/src/opentelemetry/instrumentation/psycopg/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@
103103
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
104104
| Commenter Option | Description | Example |
105105
+===========================+===========================================================+===========================================================================+
106-
| ``db_driver`` | Database driver name with version. | ``psycopg=3.1.9`` |
106+
| ``db_driver`` | Database driver name with version. | ``psycopg='3.1.9'`` |
107107
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
108108
| ``dbapi_threadsafety`` | DB-API threadsafety value: 0-3 or unknown. | ``dbapi_threadsafety=2`` |
109109
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
110-
| ``dbapi_level`` | DB-API API level: 1.0, 2.0, or unknown. | ``dbapi_level=2.0`` |
110+
| ``dbapi_level`` | DB-API API level: 1.0, 2.0, or unknown. | ``dbapi_level='2.0'`` |
111111
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
112112
| ``driver_paramstyle`` | DB-API paramstyle for SQL statement parameter. | ``driver_paramstyle='pyformat'`` |
113113
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+

instrumentation/opentelemetry-instrumentation-psycopg2/src/opentelemetry/instrumentation/psycopg2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@
102102
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
103103
| Commenter Option | Description | Example |
104104
+===========================+===========================================================+===========================================================================+
105-
| ``db_driver`` | Database driver name with version. | ``psycopg2=2.9.3`` |
105+
| ``db_driver`` | Database driver name with version. | ``psycopg2='2.9.3'`` |
106106
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
107107
| ``dbapi_threadsafety`` | DB-API threadsafety value: 0-3 or unknown. | ``dbapi_threadsafety=2`` |
108108
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
109-
| ``dbapi_level`` | DB-API API level: 1.0, 2.0, or unknown. | ``dbapi_level=2.0`` |
109+
| ``dbapi_level`` | DB-API API level: 1.0, 2.0, or unknown. | ``dbapi_level='2.0'`` |
110110
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+
111111
| ``driver_paramstyle`` | DB-API paramstyle for SQL statement parameter. | ``driver_paramstyle='pyformat'`` |
112112
+---------------------------+-----------------------------------------------------------+---------------------------------------------------------------------------+

0 commit comments

Comments
 (0)