From 064a0218f933175015f273f3f59fca01e5ea94ea Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Wed, 30 Mar 2022 16:02:17 +0100 Subject: [PATCH] fix: use correct package name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 02507a5d..58988280 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ## Example Usage (Javascript / ES6) ```javascript -import { Client } from "revolt-api"; +import { Client } from "revolt.js"; let client = new Client(); @@ -31,7 +31,7 @@ For example, `node --experimental-specifier-resolution=node index.js`. ## Example Usage (Typescript) ```typescript -import { Client } from "revolt-api"; +import { Client } from "revolt.js"; let client = new Client();