📖 DOC: Modify comments (#1710)

Co-authored-by: Zian502 <yuanzhian@cai-inc.com>
This commit is contained in:
AN
2022-02-16 23:01:46 +08:00
committed by GitHub
parent e682e7a0a3
commit 1e0f7e06bb

View File

@@ -15,12 +15,12 @@ console.log('Starting cnpmjs.org ...\ncluster: %s\nadmins: %j\nscopes: %j\nsourc
if (config.enableCluster) {
forkWorker();
config.syncModel !== 'none' && forkSyncer();
// scync assign pravate scope package
// sync assign private scope package
config.syncScope && forkScopeSyncer();
} else {
require(workerPath);
config.syncModel !== 'none' && require(syncPath);
// scync assign pravate scope package
// sync assign private scope package
config.syncScope && require(scopeSyncPath);
}