Fix documentation for MySQL instrumentation (#665)

This commit is contained in:
Tyler Yahn 2021-09-07 14:47:38 -07:00 committed by GitHub
parent 0e5853b0c6
commit 984f5cd2d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ Usage
cnx = mysql.connector.connect(database="MySQL_Database")
cursor = cnx.cursor()
cursor.execute("INSERT INTO test (testField) VALUES (123)"
cursor.execute("INSERT INTO test (testField) VALUES (123)")
cursor.close()
cnx.close()