Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Himanshu Mehta authored and Vitaly Puzrin committed Oct 16, 2021
1 parent 6e2de08 commit e07a9dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/markdown-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -3252,7 +3252,7 @@
};
/**
* Renderer.renderInline(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand All @@ -3271,7 +3271,7 @@
};
/** internal
* Renderer.renderInlineAsText(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand All @@ -3293,7 +3293,7 @@
};
/**
* Renderer.render(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand Down
6 changes: 3 additions & 3 deletions lib/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Renderer.prototype.renderToken = function renderToken(tokens, idx, options) {

/**
* Renderer.renderInline(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand All @@ -284,7 +284,7 @@ Renderer.prototype.renderInline = function (tokens, options, env) {

/** internal
* Renderer.renderInlineAsText(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand All @@ -311,7 +311,7 @@ Renderer.prototype.renderInlineAsText = function (tokens, options, env) {

/**
* Renderer.render(tokens, options, env) -> String
* - tokens (Array): list on block tokens to renter
* - tokens (Array): list on block tokens to render
* - options (Object): params of parser instance
* - env (Object): additional data from parsed input (references, for example)
*
Expand Down

0 comments on commit e07a9dd

Please sign in to comment.