diff --git a/README.md b/README.md index 3a1ae839e7..9a83e6f9bc 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Deno Load octokit directly from cdn.skypack.dev ```ts -import { Octokit, App, Action } from "https://cdn.skypack.dev/octokit?dts"; +import { Octokit, App } from "https://cdn.skypack.dev/octokit?dts"; ``` @@ -79,7 +79,7 @@ Node 12+ Install with npm install octokit, or yarn add octokit ```js -import { Octokit, App, Action } from "octokit"; +import { Octokit, App } from "octokit"; ``` @@ -90,7 +90,7 @@ Node 10 and below Install with npm install octokit, or yarn add octokit ```js -const { Octokit, App, Action } = require("octokit"); +const { Octokit, App } = require("octokit"); ```