You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/12/12 14:21:33 UTC

[airflow-site] branch master updated: Fix spelling (#351)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f6bf4c  Fix spelling (#351)
7f6bf4c is described below

commit 7f6bf4cb77a46bf88dc32d082b781ca4a6459811
Author: John Bampton <jb...@users.noreply.github.com>
AuthorDate: Sun Dec 13 00:21:24 2020 +1000

    Fix spelling (#351)
---
 landing-pages/create-index.js                                       | 6 +++---
 .../en/blog/documenting-using-local-development-environments.md     | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/landing-pages/create-index.js b/landing-pages/create-index.js
index d3ff461..8c1d587 100644
--- a/landing-pages/create-index.js
+++ b/landing-pages/create-index.js
@@ -27,7 +27,7 @@ const parse = promisify(frontMatterParser.parse.bind(frontMatterParser));
 const lunrjs = require("lunr");
 
 const contentDirectory = `${__dirname}/site/content`;
-const outputtDirectory = `${__dirname}/site/static/_gen/indexes`;
+const outputDirectory = `${__dirname}/site/static/_gen/indexes`;
 
 
 async function isDirectoryExists(dirPath) {
@@ -87,7 +87,7 @@ async function writeJson(filePath, index) {
 }
 
 async function processLanguage(language) {
-  console.log(`Proccessing "${language}" language.`);
+  console.log(`Processing "${language}" language.`);
   const currentDirectory = `${contentDirectory}/${language}/blog`;
   if (!await isDirectoryExists(currentDirectory)) {
     console.log("No blog posts. Skipping.");
@@ -95,7 +95,7 @@ async function processLanguage(language) {
   }
   const posts = await loadPostsWithFrontMatter(currentDirectory);
   const index = makeIndex(posts);
-  const currentOutputDirectory = `${outputtDirectory}/${language}`;
+  const currentOutputDirectory = `${outputDirectory}/${language}`;
   if (!await isDirectoryExists(currentOutputDirectory)) {
     await fs.mkdir(currentOutputDirectory);
   }
diff --git a/landing-pages/site/content/en/blog/documenting-using-local-development-environments.md b/landing-pages/site/content/en/blog/documenting-using-local-development-environments.md
index 60cd33f..5641882 100644
--- a/landing-pages/site/content/en/blog/documenting-using-local-development-environments.md
+++ b/landing-pages/site/content/en/blog/documenting-using-local-development-environments.md
@@ -14,7 +14,7 @@ date: 2019-11-22
 From Sept to November, 2019 I have been participating in a wonderful initiative, [Google Season of Docs](https://developers.google.com/season-of-docs).
 
 I had a pleasure to contribute to the Apache Airflow open source project as a technical writer.
-My initial assignment was an extension to the github-based Contribution guide.
+My initial assignment was an extension to the GitHub-based Contribution guide.
 
 From the very first days I have been pretty closely involved into inter-project communications
 via emails/slack and had regular 1:1s with my mentor, Jarek Potiuk.