Skip to content

Commit c5f9a6a

Browse files
committed
Change some URLs to https.
1 parent 71f4d20 commit c5f9a6a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const context = {
206206
};
207207
```
208208

209-
### [compact](http://json-ld.org/spec/latest/json-ld/#compacted-document-form)
209+
### [compact](https://json-ld.org/spec/latest/json-ld/#compacted-document-form)
210210

211211
```js
212212
// compact a document according to a particular context
@@ -226,7 +226,7 @@ const compacted = await jsonld.compact(
226226
'http://example.org/doc', 'http://example.org/context', ...);
227227
```
228228

229-
### [expand](http://json-ld.org/spec/latest/json-ld/#expanded-document-form)
229+
### [expand](https://json-ld.org/spec/latest/json-ld/#expanded-document-form)
230230

231231
```js
232232
// expand a document, removing its context
@@ -243,15 +243,15 @@ const expanded = await jsonld.expand(compacted);
243243
const expanded = await jsonld.expand('http://example.org/doc', ...);
244244
```
245245

246-
### [flatten](http://json-ld.org/spec/latest/json-ld/#flattened-document-form)
246+
### [flatten](https://json-ld.org/spec/latest/json-ld/#flattened-document-form)
247247

248248
```js
249249
// flatten a document
250250
const flattened = await jsonld.flatten(doc);
251251
// output has all deep-level trees flattened to the top-level
252252
```
253253

254-
### [frame](http://json-ld.org/spec/latest/json-ld-framing/#introduction)
254+
### [frame](https://json-ld.org/spec/latest/json-ld-framing/#introduction)
255255

256256
```js
257257
// frame a document
@@ -384,7 +384,7 @@ Source
384384
The source code for the JavaScript implementation of the JSON-LD API
385385
is available at:
386386

387-
http://github.com/digitalbazaar/jsonld.js
387+
https://github.com/digitalbazaar/jsonld.js
388388

389389
Tests
390390
-----

0 commit comments

Comments
 (0)