Browse Source

More license docs fixes

Jordi Boggiano 7 years ago
parent
commit
9b30d83c23
1 changed files with 3 additions and 3 deletions
  1. 3 3
      doc/04-schema.md

+ 3 - 3
doc/04-schema.md

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