不要怂,就是干,撸起袖子干!

Commit 2fe980e2 by Tobias Büschel Committed by GitHub

fix(types): typo in sequelize.js and sequelize.d.ts (#12975)

1 parent e5b8929d
Showing with 2 additions and 2 deletions
......@@ -167,7 +167,7 @@ class Sequelize {
* @param {object} [options.operatorsAliases] String based operator alias. Pass object to limit set of aliased operators.
* @param {object} [options.hooks] An object of global hook functions that are called before and after certain lifecycle events. Global hooks will run after any model-specific hooks defined for the same event (See `Sequelize.Model.init()` for a list). Additionally, `beforeConnect()`, `afterConnect()`, `beforeDisconnect()`, and `afterDisconnect()` hooks may be defined here.
* @param {boolean} [options.minifyAliases=false] A flag that defines if aliases should be minified (mostly useful to avoid Postgres alias character limit of 64)
* @param {boolean} [options.logQueryParameters=false] A flag that defines if show bind patameters in log.
* @param {boolean} [options.logQueryParameters=false] A flag that defines if show bind parameters in log.
*/
constructor(database, username, password, options) {
let config;
......
......@@ -382,7 +382,7 @@ export interface Options extends Logging {
minifyAliases?: boolean;
/**
* Set to `true` to show bind patameters in log.
* Set to `true` to show bind parameters in log.
*
* @default false
*/
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!