Skip to content

Commit

Permalink
docs: fix imports (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv authored Oct 11, 2021
1 parent e02541c commit 854f32b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Deno
Load <code>octokit</code> directly from <a href="https://cdn.skypack.dev">cdn.skypack.dev</a>

```ts
import { Octokit, App, Action } from "https://cdn.skypack.dev/octokit?dts";
import { Octokit, App } from "https://cdn.skypack.dev/octokit?dts";
```

</td></tr>
Expand All @@ -79,7 +79,7 @@ Node 12+
Install with <code>npm install octokit</code>, or <code>yarn add octokit</code>

```js
import { Octokit, App, Action } from "octokit";
import { Octokit, App } from "octokit";
```

</td></tr>
Expand All @@ -90,7 +90,7 @@ Node 10 and below
Install with <code>npm install octokit</code>, or <code>yarn add octokit</code>

```js
const { Octokit, App, Action } = require("octokit");
const { Octokit, App } = require("octokit");
```

</td></tr>
Expand Down

0 comments on commit 854f32b

Please sign in to comment.