solid-logic 3.0.9-226a011 → 3.0.9-29d7a0d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -51,8 +51,8 @@ import { someFunction } from 'solid-logic';
51
51
 
52
52
  ```html
53
53
  <script type="module">
54
- import * as $rdf from 'https://esm.sh/rdflib'
55
- import { someFunction } from 'https://esm.sh/solid-logic'
54
+ import * as rdflib from 'https://esm.sh/rdflib';
55
+ import { someFunction } from 'https://esm.sh/solid-logic';
56
56
 
57
57
  // Example usage
58
58
  // someFunction(...)
@@ -73,8 +73,8 @@ or
73
73
  }
74
74
  </script>
75
75
  <script type="module">
76
- import * as $rdf from 'rdflib'
77
- import { someFunction } from 'solid-logic'
76
+ import * as rdflib from 'rdflib';
77
+ import { someFunction } from 'solid-logic';
78
78
 
79
79
  // Example usage
80
80
  // someFunction(...)