@@ -15,15 +15,15 @@ private module Aiomysql {
1515 private import semmle.python.internal.Awaited
1616
1717 /**
18- * Gets the `ConnectionPool` that is created when the result of `aiomysql.create_pool()` is awaited.
18+ * Gets a `ConnectionPool` that is created when the result of `aiomysql.create_pool()` is awaited.
1919 * See https://aiomysql.readthedocs.io/en/stable/pool.html
2020 */
2121 API:: Node connectionPool ( ) {
2222 result = API:: moduleImport ( "aiomysql" ) .getMember ( "create_pool" ) .getReturn ( ) .getAwaited ( )
2323 }
2424
2525 /**
26- * Gets the `Connection` that is created when
26+ * Gets a `Connection` that is created when
2727 * - the result of `aiomysql.connect()` is awaited.
2828 * - the result of calling `aquire` on a `ConnectionPool` is awaited.
2929 * See https://aiomysql.readthedocs.io/en/stable/connection.html#connection
@@ -35,7 +35,7 @@ private module Aiomysql {
3535 }
3636
3737 /**
38- * Gets the `Cursor` that is created when
38+ * Gets a `Cursor` that is created when
3939 * - the result of calling `cursor` on a `ConnectionPool` is awaited.
4040 * - the result of calling `cursor` on a `Connection` is awaited.
4141 * See https://aiomysql.readthedocs.io/en/stable/cursors.html
@@ -85,7 +85,7 @@ private module Aiomysql {
8585 }
8686
8787 /**
88- * Gets the `Engine` that is created when the result of calling `aiomysql.sa.create_engine` is awaited.
88+ * Gets an `Engine` that is created when the result of calling `aiomysql.sa.create_engine` is awaited.
8989 * See https://aiomysql.readthedocs.io/en/stable/sa.html#engine
9090 */
9191 API:: Node engine ( ) {
@@ -98,7 +98,7 @@ private module Aiomysql {
9898 }
9999
100100 /**
101- * Gets the `SAConnection` that is created when the result of calling `aquire` on an `Engine` is awaited.
101+ * Gets an `SAConnection` that is created when the result of calling `aquire` on an `Engine` is awaited.
102102 * See https://aiomysql.readthedocs.io/en/stable/sa.html#connection
103103 */
104104 API:: Node saConnection ( ) { result = engine ( ) .getMember ( "acquire" ) .getReturn ( ) .getAwaited ( ) }
0 commit comments