Skip to content

Commit d7dbde5

Browse files
committed
Documentation
1 parent bc7c25e commit d7dbde5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

design/website/docs/compile/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ High Performance Runtime Validation
44

55
## Overview
66

7-
The Compile submodule is a high-performance Json Schema compliant JIT compiler that compiles schematics into efficient runtime validators. The compiler is optimized for fast compilation and validation and is known to be one of the fastest validation solutions available for JavaScript.
7+
The Compile submodule is a high-performance, JSON Schema compliant JIT compiler that transforms schematics into efficient runtime validators. It is optimized for fast, dynamic schema compilation and delivers extremely high data-validation throughput.
88

99
```typescript
1010
import { Compile } from 'typebox/compile'

docs/docs/compile/overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1>Compile</h1>
22
<p>High Performance Runtime Validation</p>
33
<h2>Overview</h2>
4-
<p>The Compile submodule is a high-performance Json Schema compliant JIT compiler that compiles schematics into efficient runtime validators. The compiler is optimized for fast compilation and validation and is known to be one of the fastest validation solutions available for JavaScript.</p>
4+
<p>The Compile submodule is a high-performance, JSON Schema compliant JIT compiler that transforms schematics into efficient runtime validators. It is optimized for fast, dynamic schema compilation and delivers extremely high data-validation throughput.</p>
55
<pre><code class="language-typescript">import { Compile } from &#39;typebox/compile&#39;
66
</code></pre>
77
<h3>Example</h3>

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install typebox
2525

2626
## Usage
2727

28-
A TypeScript first validation engine for JSON Schema [Example](https://tsplay.dev/mZMOeN)
28+
A TypeScript engine for JSON Schema [Example](https://tsplay.dev/mZMOeN)
2929

3030
```typescript
3131
import Type from 'typebox'
@@ -212,7 +212,7 @@ type S = Type.Static<typeof S> // type S = {
212212
213213
[Documentation](https://sinclairzx81.github.io/typebox/#/docs/compile/overview) | [Example](https://tsplay.dev/WyraZw)
214214
215-
The Compile submodule is a high-performance JSON Schema compliant JIT compiler that compiles schematics into efficient runtime validators. The compiler is optimized for fast compilation and validation and is known to be one of the fastest validation solutions available for JavaScript.
215+
The Compile submodule is a high-performance, JSON Schema compliant JIT compiler that transforms schematics into efficient runtime validators. It is optimized for fast, dynamic schema compilation and delivers extremely high data-validation throughput.
216216
217217
```typescript
218218
import Compile from 'typebox/compile'

0 commit comments

Comments
 (0)