Skip to content

Commit

Permalink
fix(README): module name in usage examples
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Sep 3, 2019
1 parent 9c775d6 commit 11f2473
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 @@ -37,7 +37,7 @@ Load `@octokit/auth-app` directly from [cdn.pika.dev](https://cdn.pika.dev)

```html
<script type="module">
import { createOAuthAppAuth } from "https://cdn.pika.dev/@octokit/auth-app";
import { createAppAuth } from "https://cdn.pika.dev/@octokit/auth-app";
</script>
```

Expand All @@ -49,8 +49,8 @@ Node
Install with <code>npm install @octokit/auth-app</code>

```js
const { createOAuthAppAuth } = require("@octokit/auth-app");
// or: import { createOAuthAppAuth } from "@octokit/auth-app";
const { createAppAuth } = require("@octokit/auth-app");
// or: import { createAppAuth } from "@octokit/auth-app";
```

</td></tr>
Expand Down

0 comments on commit 11f2473

Please sign in to comment.