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

[skywalking-eyes] branch doc/header created (now 757c3b3)

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

kezhenxu94 pushed a change to branch doc/header
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git


      at 757c3b3  Fix wrong indentation in doc

This branch includes the following new commits:

     new 757c3b3  Fix wrong indentation in doc

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-eyes] 01/01: Fix wrong indentation in doc

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 757c3b3fff32a70bdda164f6dee2967992f4806b
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Sat Apr 29 12:47:35 2023 +0800

    Fix wrong indentation in doc
---
 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.