From 5c1e80aa266c571d5f9df825fbcb33d8943c7cad Mon Sep 17 00:00:00 2001 From: Philipp_Lypniakov Date: Thu, 26 Mar 2020 20:39:44 +0200 Subject: [PATCH] Fix typos --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index b531720..7ef807c 100644 --- a/lib/index.js +++ b/lib/index.js @@ -377,7 +377,7 @@ MarkdownIt.prototype.set = function (options) { * MarkdownIt.configure(presets) * * Batch load of all options and compenent settings. This is internal method, - * and you probably will not need it. But if you with - see available presets + * and you probably will not need it. But if you will - see available presets * and data structure [here](https://github.com/markdown-it/markdown-it/tree/master/lib/presets) * * We strongly recommend to use presets instead of direct config loads. That @@ -503,7 +503,7 @@ MarkdownIt.prototype.use = function (plugin /*, params, ... */) { * - src (String): source string * - env (Object): environment sandbox * - * Parse input string and returns list of block tokens (special token type + * Parse input string and return list of block tokens (special token type * "inline" will contain list of inline tokens). You should not call this * method directly, until you write custom renderer (for example, to produce * AST).