Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rikukissa authored Sep 11, 2021
1 parent aac93a5 commit b0e2845
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const response = await axios.get("https://reddit.com/r/typescript.json");
const data: RedditResponse = typehole.t(response.data);
```

4. Remove the typehole, and you're done. Typeholes are meant to be development-time only, so you shouldn't commit them. Typehole provides you with 2 [commands](#Commands) for easy removal of typeholes.
4. Remove the typehole, and you're done. Typeholes are meant to be development-time only, so you shouldn't commit them. Typehole provides you with 2 [commands](#commands) for easy removal of typeholes.

```typescript
interface RedditResponse {
Expand Down Expand Up @@ -96,7 +96,7 @@ From 1.4.0 forward also Promises are supported. All other values (functions etc.

## Runtime

Typehole runtime's job is to captures values in your code and to send them to the extension in a serialized format.
Typehole runtime's job is to capture values in your code and to send them to the extension in a serialized format.

```typescript
import typehole from "typehole";
Expand Down

0 comments on commit b0e2845

Please sign in to comment.