From 6b5faeb1ea172ca8b43a66d58e4d8400a2140e60 Mon Sep 17 00:00:00 2001 From: OnkarRuikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:27:34 +0530 Subject: [PATCH 1/6] Fix reviewdog concurrency issue --- .github/workflows/pr-check-lint_content.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr-check-lint_content.yml b/.github/workflows/pr-check-lint_content.yml index 0ae36cbca2a1bc7..9bc263a18e9d5e3 100644 --- a/.github/workflows/pr-check-lint_content.yml +++ b/.github/workflows/pr-check-lint_content.yml @@ -12,6 +12,10 @@ on: permissions: pull-requests: write +concurrency: + group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: lint-and-review-docs: runs-on: ubuntu-latest From d731dde91a398a4b31dd780419d2f1d2aa842d9b Mon Sep 17 00:00:00 2001 From: OnkarRuikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:36:08 +0530 Subject: [PATCH 2/6] Test reviewdog concurrency issue fix --- files/en-us/games/index.md | 6 +++++- files/en-us/glossary/abstraction/index.md | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/files/en-us/games/index.md b/files/en-us/games/index.md index 56dc31db3e47d99..b8f2564c07e02bb 100644 --- a/files/en-us/games/index.md +++ b/files/en-us/games/index.md @@ -8,12 +8,16 @@ page-type: landing-page Gaming is one of the most popular computer activities. New technologies are constantly arriving to make it possible to develop better and more powerful games that can be run in any standards-compliant web browser. -## Develop web games +## Develop web games Welcome to the MDN game development center! In this area of the site, we provide resources for web developers wanting to develop games. You will find many useful tutorials and technique articles in the main menu on the left, so feel free to explore. We've also included a reference section so you can easily find information about all the most common APIs used in game development. +```css +div{background:red;} +``` + > **Note:** Creating games on the web draws on a number of core web technologies such as HTML, CSS, and JavaScript. The [Learning Area](/en-US/docs/Learn) is a good place to go to get started with the basics. ## Port native games to the Web diff --git a/files/en-us/glossary/abstraction/index.md b/files/en-us/glossary/abstraction/index.md index 99997f54767c461..04831ab519cdcba 100644 --- a/files/en-us/glossary/abstraction/index.md +++ b/files/en-us/glossary/abstraction/index.md @@ -15,7 +15,7 @@ Abstraction in {{Glossary("computer programming")}} is a way to reduce complexit - Can change the internal implementation of a class independently without affecting the user. - Helps to increase the security of an application or program as only important details are provided to the user. -## Example +## Example ```js class ImplementAbstraction { @@ -25,7 +25,7 @@ class ImplementAbstraction { this.b = y; } - display() { + display(){ console.log(`a = ${this.a}`); console.log(`b = ${this.b}`); } From ede55e14908a4e498ccd4e665da6f2154f158de1 Mon Sep 17 00:00:00 2001 From: Onkar Ruikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:38:34 +0530 Subject: [PATCH 3/6] Update files/en-us/glossary/abstraction/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/en-us/glossary/abstraction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/abstraction/index.md b/files/en-us/glossary/abstraction/index.md index 04831ab519cdcba..67f92d2cdc2c824 100644 --- a/files/en-us/glossary/abstraction/index.md +++ b/files/en-us/glossary/abstraction/index.md @@ -25,7 +25,7 @@ class ImplementAbstraction { this.b = y; } - display(){ + display() { console.log(`a = ${this.a}`); console.log(`b = ${this.b}`); } From 6fe916b51292b9d0ab20b3bca93d1e7dc0ea8bf9 Mon Sep 17 00:00:00 2001 From: Onkar Ruikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:38:56 +0530 Subject: [PATCH 4/6] Update files/en-us/games/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/en-us/games/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/files/en-us/games/index.md b/files/en-us/games/index.md index b8f2564c07e02bb..4aec2f094ffc93a 100644 --- a/files/en-us/games/index.md +++ b/files/en-us/games/index.md @@ -15,7 +15,9 @@ Welcome to the MDN game development center! In this area of the site, we provide We've also included a reference section so you can easily find information about all the most common APIs used in game development. ```css -div{background:red;} +div { + background: red; +} ``` > **Note:** Creating games on the web draws on a number of core web technologies such as HTML, CSS, and JavaScript. The [Learning Area](/en-US/docs/Learn) is a good place to go to get started with the basics. From 823aede80d98e608fbece8a6cdf46038a7360f19 Mon Sep 17 00:00:00 2001 From: Onkar Ruikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:39:16 +0530 Subject: [PATCH 5/6] Update files/en-us/glossary/abstraction/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/en-us/glossary/abstraction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/abstraction/index.md b/files/en-us/glossary/abstraction/index.md index 67f92d2cdc2c824..99997f54767c461 100644 --- a/files/en-us/glossary/abstraction/index.md +++ b/files/en-us/glossary/abstraction/index.md @@ -15,7 +15,7 @@ Abstraction in {{Glossary("computer programming")}} is a way to reduce complexit - Can change the internal implementation of a class independently without affecting the user. - Helps to increase the security of an application or program as only important details are provided to the user. -## Example +## Example ```js class ImplementAbstraction { From 3abeefee66a7f705fe04337adc9cd077f9f030e8 Mon Sep 17 00:00:00 2001 From: Onkar Ruikar <87750369+OnkarRuikar@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:40:52 +0530 Subject: [PATCH 6/6] Update files/en-us/games/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/en-us/games/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/games/index.md b/files/en-us/games/index.md index 4aec2f094ffc93a..1e7a468f709f25e 100644 --- a/files/en-us/games/index.md +++ b/files/en-us/games/index.md @@ -8,7 +8,7 @@ page-type: landing-page Gaming is one of the most popular computer activities. New technologies are constantly arriving to make it possible to develop better and more powerful games that can be run in any standards-compliant web browser. -## Develop web games +## Develop web games Welcome to the MDN game development center! In this area of the site, we provide resources for web developers wanting to develop games. You will find many useful tutorials and technique articles in the main menu on the left, so feel free to explore.