From 9b30d83c23c6246ff44b682a54a56bdc3ec46b9e Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 22 Jan 2018 09:42:50 +0100 Subject: [PATCH] More license docs fixes --- doc/04-schema.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index f3d85e742..9e846168a 100644 --- a/doc/04-schema.md +++ b/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)" } ```