1
0
Fork 0

More license docs fixes

pull/6995/merge
Jordi Boggiano 2018-01-22 09:42:50 +01:00
parent 2e0a25e73f
commit 9b30d83c23
1 changed files with 3 additions and 3 deletions

View File

@ -172,8 +172,8 @@ An Example for disjunctive licenses:
```json ```json
{ {
"license": [ "license": [
"LGPL-2.1", "LGPL-2.1-only",
"GPL-3.0+" "GPL-3.0-or-later"
] ]
} }
``` ```
@ -182,7 +182,7 @@ Alternatively they can be separated with "or" and enclosed in parenthesis;
```json ```json
{ {
"license": "(LGPL-2.1 or GPL-3.0+)" "license": "(LGPL-2.1-only or GPL-3.0-or-later)"
} }
``` ```