소스 검색

add comment

kaori 3 년 전
부모
커밋
41463bca97
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/app/src/components/PageList/PageListItemL.tsx

+ 2 - 2
packages/app/src/components/PageList/PageListItemL.tsx

@@ -156,7 +156,7 @@ const PageListItemLSubstance: ForwardRefRenderFunction<ISelectable, Props> = (pr
 
     const putBackedHandler = async(path) => {
       try {
-        // pageData path should be `/trash/fuga` (`/trash` should be included to prefix)
+        // pageData path should be `/trash/fuga` (`/trash` should be included to the prefix)
         await unlink(pageData.path);
       }
       catch (err) {
@@ -164,7 +164,7 @@ const PageListItemLSubstance: ForwardRefRenderFunction<ISelectable, Props> = (pr
       }
 
       if (onPagePutBacked != null) {
-        // This path should be `/fuga` ( `/trash` is not included to prefix)
+        // This path should be `/fuga` ( `/trash` is not included to the prefix)
         onPagePutBacked(path);
       }
     };