You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2023/04/29 05:01:58 UTC

[skywalking-eyes] branch main updated: Fix wrong indentation in doc (#159)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git


The following commit(s) were added to refs/heads/main by this push:
     new 2d06985  Fix wrong indentation in doc (#159)
2d06985 is described below

commit 2d069853ff0df2c85af9d6b96b17df9d633dd6f9
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Sat Apr 29 13:01:53 2023 +0800

    Fix wrong indentation in doc (#159)
---
 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index e0724d3..48909bd 100644
--- a/README.md
+++ b/README.md
@@ -675,15 +675,15 @@ dependency: # <16>
       recursive: true # whether to exclude all transitive dependencies brought by <dependency-name>, now only maven project supports this <24>
 ```
 
-1. The `header` section is configurations for source codes license header. If you have mutliple modules or packages in your project that have differing licenses, this section may contain a list of licenses:
+1. The `header` section is configurations for source codes license header. If you have multiple modules or packages in your project that have differing licenses, this section may contain a list of licenses:
 ```yaml
 header:
   - license:
-    spdx-id: Apache-2.0
-    path: "/path/to/module/a"
+      spdx-id: Apache-2.0
+      path: "/path/to/module/a"
   - license:
-    spdx-id: MPL-2.0
-    path: "/path/to/module/b"
+      spdx-id: MPL-2.0
+      path: "/path/to/module/b"
 ```
 2. The [SPDX ID](https://spdx.org/licenses/) of the license, it’s convenient when your license is standard SPDX license, so that you can simply specify this identifier without copying the whole license `content` or `pattern`. This will be used as the content when `fix` command needs to insert a license header.
 3. The copyright owner to replace the `[owner]` in the `SPDX-ID` license template.