diff --git a/packages/binding-abstract/binding-abstract.js b/packages/binding-abstract/binding-abstract.js index 8afb3ddda..daead82c1 100644 --- a/packages/binding-abstract/binding-abstract.js +++ b/packages/binding-abstract/binding-abstract.js @@ -15,7 +15,7 @@ const debug = require('debug')('serialport/binding-abstract') /** * You never have to use `Binding` objects directly. SerialPort uses them to access the underlying hardware. This documentation is geared towards people who are making bindings for different platforms. This class can be inherited from to get type checking for each method. * @class AbstractBinding - * @param {object} options options for the biding + * @param {object} options options for the binding * @property {boolean} isOpen Required property. `true` if the port is open, `false` otherwise. Should be read-only. * @throws {TypeError} When given invalid arguments, a `TypeError` is thrown. * @since 5.0.0 diff --git a/packages/serialport/test/integration.js b/packages/serialport/test/integration.js index c950f36a5..fe9994c23 100644 --- a/packages/serialport/test/integration.js +++ b/packages/serialport/test/integration.js @@ -14,7 +14,7 @@ switch (process.platform) { const readyData = Buffer.from('READY') -// test everything on our mock biding and natively +// test everything on our mock binding and natively const DetectedBinding = SerialPort.Binding const MockBinding = require('@serialport/binding-mock')