Skip to content

Commit 53c3d75

Browse files
committed
Documentation
1 parent 55ae006 commit 53c3d75

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

readme.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<p>Json Schema Type Builder with Static Type Resolution for TypeScript</p>
66

7-
<img src="https://github.com/sinclairzx81/typebox/blob/master/typebox.png?raw=true" />
7+
<img src="https://raw.githubusercontent.com/sinclairzx81/typebox/refs/heads/master/typebox.png" />
88

99
<br />
1010
<br />
@@ -777,7 +777,8 @@ type T = Static<typeof T> // type T = string | null
777777
TypeBox Modules are containers for related types. They function as namespaces and enable internal types to reference each other via string references. Modules support both singular and mutually recursive types. They provide a mechanism to create circular types irrespective of the order in which types are defined.
778778
779779
```typescript
780-
// The following creates a circular recursive type.
780+
781+
// The following creates a Module of circular recursive Types.
781782

782783
const Module = Type.Module({
783784
A: Type.Object({
@@ -791,7 +792,7 @@ const Module = Type.Module({
791792
}),
792793
})
793794

794-
// Module types must be imported before use.
795+
// Module Types must be imported before use.
795796

796797
const A = Module.Import('A') // const A: TImport<{...}, 'A'>
797798

0 commit comments

Comments
 (0)