From d92208bb436bd429642246e91fbc55c84ba7845f Mon Sep 17 00:00:00 2001 From: JBtje <jj__bb@hotmail.com> Date: Mon, 7 Jan 2019 02:09:33 +0100 Subject: [PATCH] docs: fix spelling (#1764) * Update binding-abstract.js typo * Update integration.js typo --- packages/binding-abstract/binding-abstract.js | 2 +- packages/serialport/test/integration.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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')