From 0535cb1785a943b51655095c36f27b87a8d9c8df Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Tue, 27 Mar 2018 19:50:46 +0300 Subject: [PATCH] Fix typo in USING_ADVANCED.md --- docs/USING_ADVANCED.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/USING_ADVANCED.md b/docs/USING_ADVANCED.md index c3660ac5..756ddef2 100644 --- a/docs/USING_ADVANCED.md +++ b/docs/USING_ADVANCED.md @@ -54,7 +54,7 @@ console.log(myMarked('I am using __markdown__.'));

Asynchronous highlighting

-Unlike `highlight.js` the `pygmatize.js` library uses asynchronous highlighting. This example demonstrates that marked is agnostic when it comes to the highlighter you use. +Unlike `highlight.js` the `pygmentize.js` library uses asynchronous highlighting. This example demonstrates that marked is agnostic when it comes to the highlighter you use. ```js myMarked.setOptions({ @@ -68,4 +68,4 @@ myMarked.setOptions({ console.log(myMarked(markdownString)); ``` -In both examples, `code` is a `string` representing the section of code to pass to the highlighter. In this example, `lang` is a `string` informing the highlighter what programming lnaguage to use for the `code` and `callback` is the `function` the asynchronous highlighter will call once complete. \ No newline at end of file +In both examples, `code` is a `string` representing the section of code to pass to the highlighter. In this example, `lang` is a `string` informing the highlighter what programming lnaguage to use for the `code` and `callback` is the `function` the asynchronous highlighter will call once complete.