Skip to content

Commit

Permalink
Add missing commas in stepper comments
Browse files Browse the repository at this point in the history
  • Loading branch information
meech-ward committed Jun 10, 2018
1 parent 017e5f1 commit 360b22b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/stepper.js
Expand Up @@ -56,7 +56,7 @@ function isSupported(io) {
*
*
* five.Stepper({
* type: five.Stepper.TYPE.DRIVER
* type: five.Stepper.TYPE.DRIVER,
* stepsPerRev: number,
* pins: {
* step: number,
Expand All @@ -65,13 +65,13 @@ function isSupported(io) {
* });
*
* five.Stepper({
* type: five.Stepper.TYPE.DRIVER
* type: five.Stepper.TYPE.DRIVER,
* stepsPerRev: number,
* pins: [ step, dir ]
* });
*
* five.Stepper({
* type: five.Stepper.TYPE.TWO_WIRE
* type: five.Stepper.TYPE.TWO_WIRE,
* stepsPerRev: number,
* pins: {
* motor1: number,
Expand All @@ -80,13 +80,13 @@ function isSupported(io) {
* });
*
* five.Stepper({
* type: five.Stepper.TYPE.TWO_WIRE
* type: five.Stepper.TYPE.TWO_WIRE,
* stepsPerRev: number,
* pins: [ motor1, motor2 ]
* });
*
* five.Stepper({
* type: five.Stepper.TYPE.FOUR_WIRE
* type: five.Stepper.TYPE.FOUR_WIRE,
* stepsPerRev: number,
* pins: {
* motor1: number,
Expand All @@ -97,7 +97,7 @@ function isSupported(io) {
* });
*
* five.Stepper({
* type: five.Stepper.TYPE.FOUR_WIRE
* type: five.Stepper.TYPE.FOUR_WIRE,
* stepsPerRev: number,
* pins: [ motor1, motor2, motor3, motor4 ]
* });
Expand Down

0 comments on commit 360b22b

Please sign in to comment.