Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing typos #2845

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ Verbose Output: ${this.verboseMode}`);
* Shows a help message including usage.
*
* @static
* @returns {String} - The help mesage.
* @returns {String} - The help message.
*/
static getHelp() {
return `Usage: eleventy
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/EdgePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function EleventyEdgePlugin(eleventyConfig, opts = {}) {
// for the default Deno import
eleventyEdgeVersion: "2.0.2",

// runtime compatibity check with Eleventy core version
// runtime compatibility check with Eleventy core version
compatibility: ">=2",
},
opts
Expand Down
2 changes: 1 addition & 1 deletion src/TemplateMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class TemplateMap {

get userConfig() {
if (!this._userConfig) {
// TODO use this.config for this, need to add collections to mergable props in userconfig
// TODO use this.config for this, need to add collections to mergeable props in userconfig
this._userConfig = this.eleventyConfig.userConfig;
}

Expand Down