From 90c9d51c7d191bd638a8dfee32dc6e614ea9ee63 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 23 Sep 2016 14:15:48 +0100 Subject: [PATCH] Typos --- src/Markdown.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Markdown.js b/src/Markdown.js index 3a9cad6401..f7b97cf621 100644 --- a/src/Markdown.js +++ b/src/Markdown.js @@ -41,7 +41,7 @@ export default class Markdown { } _copyTokens() { - // copy tokens (the parser modifies it's input arg) + // copy tokens (the parser modifies its input arg) const tokens_copy = this.tokens.slice(); // it also has a 'links' property, because this is javascript // and why wouldn't you have an array that also has properties? @@ -94,7 +94,7 @@ export default class Markdown { const real_renderer = new marked.Renderer(); real_renderer.link = function(href, title, text) { // prevent marked from turning plain URLs - // into links, because tits algorithm is fairly + // into links, because its algorithm is fairly // poor. Let's send plain URLs rather than // badly linkified ones (the linkifier Vector // uses on message display is way better, eg.