From 81d98691587719ca9f74cd99b8f2dbbbcb279f46 Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Tue, 11 Dec 2018 12:39:12 -0600 Subject: [PATCH] Update docs --- types/showdown/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/showdown/index.d.ts b/types/showdown/index.d.ts index 4721b64c75..21075fd6c7 100644 --- a/types/showdown/index.d.ts +++ b/types/showdown/index.d.ts @@ -297,8 +297,8 @@ declare namespace Showdown { /** * Converts an HTML string into a markdown string * - * @param src - * @returns {string} + * @param src The input text (HTML) + * @returns The output markdown */ makeMarkdown(src: string): string;