From 2a2cf85be9acb09a25f639b785beadc062d16fa3 Mon Sep 17 00:00:00 2001 From: Dave Longley Date: Sat, 14 Sep 2013 13:43:50 -0400 Subject: [PATCH] Add missing semicolon. --- jsonld.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonld.php b/jsonld.php index d9b28a0..2d14b8c 100644 --- a/jsonld.php +++ b/jsonld.php @@ -4714,7 +4714,7 @@ class JsonLdProcessor { 'Invalid JSON-LD syntax; @context @id value must be an ' . 'absolute IRI, a blank node identifier, or a keyword.', 'jsonld.SyntaxError', 'invalid IRI mapping', - array('context' => $local_ctx)) + array('context' => $local_ctx)); } $mapping->{'@id'} = $id; }