From 5e3e1016b5fe274d33503d36771fc276fd384ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Mon, 31 Aug 2020 18:06:11 +0200 Subject: [PATCH] fix(Readme): add missing semicolon (#1) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1a1fec1..e8ab1eb3 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ const { APIUserData } = require('discord-api-types'); ```ts // TypeScript/ES Module support -import { APIUserData } from 'discord-api-types' +import { APIUserData } from 'discord-api-types'; ``` You should instead consider adding the API version you want to target by appending `/v*`, where the `*` represends the API version.