Skip to content

Commit

Permalink
docs: fix spelling (#1764)
Browse files Browse the repository at this point in the history
* Update binding-abstract.js

typo

* Update integration.js

typo
  • Loading branch information
JBtje authored and reconbot committed Jan 7, 2019
1 parent ce503b3 commit d92208b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/binding-abstract/binding-abstract.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/serialport/test/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit d92208b

Please sign in to comment.