From c3e601bee1bd6416e8b067ec8121abd996163d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Fri, 15 Nov 2024 22:27:36 +0900 Subject: [PATCH] docs: fix simple typos in `import/README.md` (#4115) --- libs/commands/import/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/commands/import/README.md b/libs/commands/import/README.md index 18db5abe79..ebdf83e4be 100644 --- a/libs/commands/import/README.md +++ b/libs/commands/import/README.md @@ -47,7 +47,7 @@ $ lerna import ~/Product --flatten ### `--dest` -When importing repositories, you can specify the destination directory by the directory listed in lerna.json. +When importing repositories, you can specify the destination directory by the directory listed in `lerna.json`. ``` $ lerna import ~/Product --dest=utilities @@ -55,7 +55,7 @@ $ lerna import ~/Product --dest=utilities ### `--preserve-commit` -Each git commit has an **author** and a **committer** (with a separate date for each). Usually they're the same person (and date), but since `lerna import` re-creates each commit from the external repository, the **committer** becomes the current git user (and date). This is _technically_ correct, but may be undesirable, for example, on Github, which displays both the **author** and **committer** if they're different people, leading to potentially confusing history/blames on imported commits. +Each git commit has an **author** and a **committer** (with a separate date for each). Usually they're the same person (and date), but since `lerna import` re-creates each commit from the external repository, the **committer** becomes the current git user (and date). This is _technically_ correct, but may be undesirable, for example, on GitHub, which displays both the **author** and **committer** if they're different people, leading to potentially confusing history/blames on imported commits. Enabling this option preserves the original **committer** (and commit date) to avoid such issues.