From e11dc14db1eb8621f511f72727725c9b95ed8488 Mon Sep 17 00:00:00 2001 From: suzhongping <55773520+suzhongping@users.noreply.github.com> Date: Fri, 24 Apr 2020 14:04:25 +0800 Subject: [PATCH] Update module.md lowercase "readfile" --- docs/module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/module.md b/docs/module.md index ce6c266..dac58ff 100644 --- a/docs/module.md +++ b/docs/module.md @@ -10,7 +10,7 @@ ES6 模块的设计思想是尽量的静态化,使得编译时就能确定模 ```javascript // CommonJS模块 -let { stat, exists, readFile } = require('fs'); +let { stat, exists, readfile } = require('fs'); // 等同于 let _fs = require('fs');