From 7ecc70725eb4a5d6f0285fccc77277f6df6c6d72 Mon Sep 17 00:00:00 2001
From: "akihiko.kigure" <akihiko.kigure@gmail.com>
Date: Tue, 25 Jan 2022 00:33:36 +0900
Subject: [PATCH] =?UTF-8?q?=E3=83=AC=E3=83=93=E3=83=A5=E3=83=BC=E6=8C=87?=
 =?UTF-8?q?=E6=91=98=E4=BA=8B=E9=A0=85=E5=8F=8D=E6=98=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 index.ts | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/index.ts b/index.ts
index 30b6c50..1089959 100644
--- a/index.ts
+++ b/index.ts
@@ -105,7 +105,7 @@ export class I2CPort {
       slaveAddress,
       /**
        * @function
-       * I2c s/I2c/I2C 読み取り処理
+       * I2C 読み取り処理
        * @param registerNumber 読み取りアドレス
        */
       read8: (registerNumber) =>
@@ -114,7 +114,7 @@ export class I2CPort {
         }),
       /**
        * @function
-       * I2c s/I2c/I2C 読み取り処理
+       * I2C 読み取り処理
        * @param registerNumber 読み取りアドレス
        */
       read16: (registerNumber) =>
@@ -137,7 +137,7 @@ export class I2CPort {
       },
       /**
        * @function
-       * I2c s/byte/bytes 書き込み処理
+       * I2c bytes 書き込み処理
        * @param registerNumber 書き込みアドレス
        * @param word 書き込みの値(ワード)
        */
@@ -151,7 +151,7 @@ export class I2CPort {
       },
       /**
        * @function
-       * I2c s/byte/bytes 読み取りバイト処理
+       * I2c bytes 読み取りバイト処理
        * Different from Web I2C API specification.
        */
       readByte: async () => {
@@ -164,7 +164,7 @@ export class I2CPort {
       },
       /**
        * @function
-       * I2c s/byte/bytes 読み取りバイト処理
+       * I2c bytes 読み取りバイト処理
        * Different from Web I2C API specification.
        * @param length 読み取る配列の長さ
        */
@@ -182,9 +182,9 @@ export class I2CPort {
       },
       /**
        * @function
-       * I2c s/byte/bytes 書き込みバイト処理
+       * I2c bytes 書き込みバイト処理
        * Different from Web I2C API specification.
-       * @param registerNumber 読み取りアドレス
+       *  @param byte 書き込みの値
        */
       writeByte: async (byte) => {
         try {
@@ -196,7 +196,7 @@ export class I2CPort {
       },
       /**
        * @function
-       * I2c s/byte/bytes 書き込み処理
+       * I2c bytes 書き込み処理
        * Different from Web I2C API specification.
        * @param 書き込みの値の配列
        */
@@ -225,13 +225,13 @@ export interface I2CSlaveDevice {
 
   /**
    * @function
-   * I2c s/I2c/I2C 読み取り処理
+   * I2C 読み取り処理
    * @param registerNumber 読み取りアドレス
    */
   read8(registerNumber: number): Promise<number>;
   /**
    * @function
-   * I2c s/I2c/I2C 読み取り処理
+   * I2C 読み取り処理
    * @param registerNumber 読み取りアドレス
    */
   read16(registerNumber: number): Promise<number>;
@@ -239,42 +239,42 @@ export interface I2CSlaveDevice {
    * @function
    * I2c s/I2c/I2C 書き込み処理
    * @param registerNumber 書き込みアドレス
-   * @param byte 書き込みの値(バイト)
+   * @param value 書き込みの値(バイト)
    */
   write8(registerNumber: number, value: number): Promise<number>;
   /**
    * @function
-   * I2c s/byte/bytes 書き込み処理
+   * I2c bytes 書き込み処理
    * @param registerNumber 書き込みアドレス
-   * @param word 書き込みの値(ワード)
+   * @param value 書き込みの値(ワード)
    */
   write16(registerNumber: number, value: number): Promise<number>;
 
   /**
    * @function
-   * I2c s/byte/bytes 読み取りバイト処理
+   * I2c bytes 読み取りバイト処理
    * Different from Web I2C API specification.
    */
   readByte(): Promise<number>;
   /**
    * @function
-   * I2c s/byte/bytes 読み取りバイト処理
+   * I2c bytes 読み取りバイト処理
    * Different from Web I2C API specification.
    * @param length 読み取る配列の長さ
    */
   readBytes(length: number): Promise<Uint8Array>;
   /**
    * @function
-   * I2c s/byte/bytes 書き込みバイト処理
+   * I2c bytes 書き込みバイト処理
    * Different from Web I2C API specification.
    * @param byte 書き込みの値
    */
   writeByte(byte: number): Promise<number>;
   /**
    * @function
-   * I2c s/byte/bytes 書き込みバイト配列処理
+   * I2c bytes 書き込みバイト配列処理
    * Different from Web I2C API specification.
-   * @param byte 書き込みの値
+   * @param bytes 書き込みの値
    */
   writeBytes(bytes: Array<number>): Promise<Uint8Array>;
 }