From b4881bbd246d6e31a3a0d1b11a095933abfdc642 Mon Sep 17 00:00:00 2001 From: umi-umi <57262844+umi-umi@users.noreply.github.com> Date: Mon, 17 Aug 2020 07:14:01 +0900 Subject: [PATCH] update based on comment --- docs/ja/ref_functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ja/ref_functions.md b/docs/ja/ref_functions.md index 687f09cbfc2f..75a0747ff241 100644 --- a/docs/ja/ref_functions.md +++ b/docs/ja/ref_functions.md @@ -115,8 +115,8 @@ static uint16_t key_timer; key_timer = timer_read(); if (timer_elapsed(key_timer) < 100) { - // 100ms 未満が経過した場合に何かを行う + // 経過時間が 100ms 未満の場合に何かを行う } else { - // 100ms 以上が経過した場合に何かを行う + // 経過時間が 100ms 以上の場合に何かを行う } ```