瀏覽代碼

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);
       }
     };