From 2ec624c31827db54d956640beb09e4ccc9e66ebf Mon Sep 17 00:00:00 2001 From: liamcottle Date: Tue, 8 Apr 2025 14:41:59 +1200 Subject: [PATCH] update comments --- examples/command_bot.js | 2 +- examples/get_contacts.js | 2 +- examples/get_repeater_status.js | 2 +- examples/send_contact_message.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/command_bot.js b/examples/command_bot.js index e2790d0..a6fdecc 100644 --- a/examples/command_bot.js +++ b/examples/command_bot.js @@ -2,7 +2,7 @@ import Constants from "../src/constants.js"; import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create tcp connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/get_contacts.js b/examples/get_contacts.js index 64975ae..6342c76 100644 --- a/examples/get_contacts.js +++ b/examples/get_contacts.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/get_repeater_status.js b/examples/get_repeater_status.js index 5ba0c1d..bd15243 100644 --- a/examples/get_repeater_status.js +++ b/examples/get_repeater_status.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401"); diff --git a/examples/send_contact_message.js b/examples/send_contact_message.js index a8bce16..9306b4d 100644 --- a/examples/send_contact_message.js +++ b/examples/send_contact_message.js @@ -1,7 +1,7 @@ import TCPConnection from "../src/connection/tcp_connection.js"; import NodeJSSerialConnection from "../src/connection/nodejs_serial_connection.js"; -// create serial connection +// create connection // const connection = new TCPConnection("10.1.0.226", 5000); const connection = new NodeJSSerialConnection("/dev/cu.usbmodem14401");