summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-05-26 12:43:14 +1000
committerGitHub <noreply@github.com>2020-05-25 19:43:14 -0700
commite4823aadec24bca0ecfd1184562d27a49fd20544 (patch)
tree66699e086fdd4b6c87bf2f83f4fae74c4e8ecded
parent5c9906eb4fc569cd08d88dcd85ce9afaa5410ffb (diff)
Fix capitalisation of "GitHub" (#9184)
-rw-r--r--docs/breaking_changes.md2
-rw-r--r--docs/cli_configuration.md2
-rw-r--r--docs/cli_development.md2
-rw-r--r--docs/configurator_step_by_step.md2
-rw-r--r--docs/de/README.md2
-rw-r--r--docs/de/_summary.md2
-rw-r--r--docs/de/newbs_learn_more_resources.md2
-rw-r--r--docs/es/README.md2
-rw-r--r--docs/es/_summary.md2
-rw-r--r--docs/es/newbs_best_practices.md2
-rw-r--r--docs/es/newbs_building_firmware_configurator.md2
-rw-r--r--docs/es/newbs_learn_more_resources.md2
-rw-r--r--docs/feature_userspace.md6
-rw-r--r--docs/fr-fr/README.md6
-rw-r--r--docs/fr-fr/breaking_changes.md2
-rw-r--r--docs/fr-fr/getting_started_github.md4
-rw-r--r--docs/fr-fr/newbs_best_practices.md2
-rw-r--r--docs/getting_started_github.md12
-rw-r--r--docs/he-il/README.md2
-rw-r--r--docs/he-il/_summary.md4
-rw-r--r--docs/he-il/getting_started_getting_help.md2
-rw-r--r--docs/he-il/getting_started_github.md10
-rw-r--r--docs/ja/cli_configuration.md2
-rw-r--r--docs/ja/getting_started_github.md8
-rw-r--r--docs/ja/newbs_building_firmware_configurator.md2
-rw-r--r--docs/ja/newbs_learn_more_resources.md4
-rw-r--r--docs/newbs_getting_started.md2
-rw-r--r--docs/other_vscode.md2
-rw-r--r--docs/pt-br/README.md2
-rw-r--r--docs/pt-br/_summary.md2
-rw-r--r--docs/ru-ru/_summary.md2
-rw-r--r--docs/ru-ru/getting_started_github.md4
-rw-r--r--docs/support.md2
-rw-r--r--docs/zh-cn/README.md2
-rw-r--r--docs/zh-cn/_summary.md2
-rw-r--r--docs/zh-cn/getting_started_getting_help.md2
-rw-r--r--docs/zh-cn/getting_started_github.md12
-rw-r--r--docs/zh-cn/newbs_building_firmware.md2
-rw-r--r--drivers/avr/apa102.c2
-rw-r--r--drivers/avr/i2c_master.c2
-rw-r--r--drivers/avr/i2c_master.h2
-rw-r--r--drivers/avr/i2c_slave.c2
-rw-r--r--drivers/avr/i2c_slave.h2
-rw-r--r--keyboards/8pack/readme.md2
-rw-r--r--keyboards/abacus/readme.md2
-rw-r--r--keyboards/allison/readme.md2
-rw-r--r--keyboards/allison_numpad/readme.md2
-rw-r--r--keyboards/alps64/readme.md2
-rw-r--r--keyboards/baguette/readme.md2
-rw-r--r--keyboards/converter/siemens_tastatur/readme.md2
-rw-r--r--keyboards/gingham/readme.md2
-rw-r--r--keyboards/handwired/fruity60/readme.md2
-rw-r--r--keyboards/handwired/mechboards_micropad/readme.md2
-rw-r--r--keyboards/hs60/v1/readme.md2
-rw-r--r--keyboards/hs60/v2/readme.md2
-rw-r--r--keyboards/keycapsss/o4l_5x12/readme.md2
-rw-r--r--keyboards/keycapsss/plaid_pad/readme.md2
-rw-r--r--keyboards/kv/revt/readme.md2
-rw-r--r--keyboards/maartenwut/mx5160/readme.md2
-rw-r--r--keyboards/mc_76k/readme.md2
-rw-r--r--keyboards/meson/readme.md2
-rw-r--r--keyboards/nightmare/readme.md2
-rwxr-xr-xkeyboards/nk65/readme.md2
-rw-r--r--keyboards/pimentoso/paddino02/readme.md2
-rw-r--r--keyboards/tg4x/readme.md2
-rw-r--r--keyboards/uranuma/readme.md2
-rw-r--r--keyboards/vinta/readme.md2
-rw-r--r--keyboards/wilba_tech/zeal60/readme.md2
-rw-r--r--keyboards/wilba_tech/zeal65/readme.md2
-rw-r--r--tmk_core/protocol/arm_atsam/led_matrix.c2
70 files changed, 95 insertions, 95 deletions
diff --git a/docs/breaking_changes.md b/docs/breaking_changes.md
index 12bc0db9da..6c684970d8 100644
--- a/docs/breaking_changes.md
+++ b/docs/breaking_changes.md
@@ -102,7 +102,7 @@ This happens immediately after the previous `future` branch is merged.
* [ ] Roll up the ChangeLog into one file.
* [ ] `git commit -m 'Merge point for <DATE> Breaking Change'`
* [ ] `git push origin future`
-* Github Actions
+* GitHub Actions
* [ ] Create a PR for `future`
* [ ] Make sure travis comes back clean
* [ ] Merge `future` PR
diff --git a/docs/cli_configuration.md b/docs/cli_configuration.md
index 1196ab669d..50f5dc6e28 100644
--- a/docs/cli_configuration.md
+++ b/docs/cli_configuration.md
@@ -108,7 +108,7 @@ compile.keymap: skully -> None
|-----|---------------|-------------|
| user.keyboard | None | The keyboard path (Example: `clueboard/66/rev4`) |
| user.keymap | None | The keymap name (Example: `default`) |
-| user.name | None | The user's github username. |
+| user.name | None | The user's GitHub username. |
# All Configuration Options
diff --git a/docs/cli_development.md b/docs/cli_development.md
index af86686c07..07c8f281ba 100644
--- a/docs/cli_development.md
+++ b/docs/cli_development.md
@@ -210,7 +210,7 @@ Our tests can be found in `lib/python/qmk/tests/`. You will find both unit and i
If your PR does not include a comprehensive set of tests please add comments like this to your code so that other people know where they can help:
- # TODO(unassigned/<yourGithubUsername>): Write <unit|integration> tests
+ # TODO(unassigned/<your_github_username>): Write <unit|integration> tests
We use [nose2](https://nose2.readthedocs.io/en/latest/getting_started.html) to run our tests. You can refer to the nose2 documentation for more details on what you can do in your test functions.
diff --git a/docs/configurator_step_by_step.md b/docs/configurator_step_by_step.md
index aee1d4e1f6..965012a907 100644
--- a/docs/configurator_step_by_step.md
+++ b/docs/configurator_step_by_step.md
@@ -12,7 +12,7 @@ I'll say that again because it's important:
!> **MAKE SURE YOU SELECT THE RIGHT VERSION!**
-If your keyboard has been advertised to be powered by QMK but is not in the list, chances are a developer hasn't gotten to it yet or we haven't had a chance to merge it in yet. File an issue at [qmk_firmware](https://github.com/qmk/qmk_firmware/issues) requesting to support that particular keyboard, if there is no active [Pull Request](https://github.com/qmk/qmk_firmware/pulls?q=is%3Aopen+is%3Apr+label%3Akeyboard) for it. There are also QMK powered keyboards that are in their manufacturer's own github accounts. Double check for that as well. <!-- FIXME(skullydazed): This feels too wordy and I'm not sure we want to encourage these kinds of issues. Also, should we prompt them to bug the manufacutrer? -->
+If your keyboard has been advertised to be powered by QMK but is not in the list, chances are a developer hasn't gotten to it yet or we haven't had a chance to merge it in yet. File an issue at [qmk_firmware](https://github.com/qmk/qmk_firmware/issues) requesting to support that particular keyboard, if there is no active [Pull Request](https://github.com/qmk/qmk_firmware/pulls?q=is%3Aopen+is%3Apr+label%3Akeyboard) for it. There are also QMK powered keyboards that are in their manufacturer's own GitHub accounts. Double check for that as well. <!-- FIXME(skullydazed): This feels too wordy and I'm not sure we want to encourage these kinds of issues. Also, should we prompt them to bug the manufacutrer? -->
## Step 2: Select Your Keyboard Layout
diff --git a/docs/de/README.md b/docs/de/README.md
index 88239d45d4..bf8fbac57a 100644
--- a/docs/de/README.md
+++ b/docs/de/README.md
@@ -13,7 +13,7 @@ QMK (*Quantum Mechanical Keyboard*) ist eine Open-Source-Community, welche die Q
## Bezugsquelle für QMK
-Wenn Du vorhast, deine Tastatur, Tastaturbelegung oder Features zu QMK beizusteuern, geht das am einfachsten, indem Du das [Repository auf Github](https://github.com/qmk/qmk_firmware#fork-destination-box) forkst, die Änderungen in deinem lokalen Repo vornimmst und anschließend einen [Pull Request](https://github.com/qmk/qmk_firmware/pulls) einreichst.
+Wenn Du vorhast, deine Tastatur, Tastaturbelegung oder Features zu QMK beizusteuern, geht das am einfachsten, indem Du das [Repository auf GitHub](https://github.com/qmk/qmk_firmware#fork-destination-box) forkst, die Änderungen in deinem lokalen Repo vornimmst und anschließend einen [Pull Request](https://github.com/qmk/qmk_firmware/pulls) einreichst.
Ansonsten kannst Du es als [zip](https://github.com/qmk/qmk_firmware/zipball/master) oder [tar](https://github.com/qmk/qmk_firmware/tarball/master) herunterladen, oder es direkt via git klonen (`git clone git@github.com:qmk/qmk_firmware.git` bzw. `git clone https://github.com/qmk/qmk_firmware.git`).
diff --git a/docs/de/_summary.md b/docs/de/_summary.md
index 19c75ecd38..ffbd292bd4 100644
--- a/docs/de/_summary.md
+++ b/docs/de/_summary.md
@@ -11,7 +11,7 @@
* [QMK CLI](de/cli.md)
* [QMK CLI Konfiguration](de/cli_configuration.md)
* [Zu QMK beitragen](de/contributing.md)
- * [Anleitung für Github](de/getting_started_github.md)
+ * [Anleitung für GitHub](de/getting_started_github.md)
* [Nach Hilfe fragen](de/getting_started_getting_help.md)
* [Breaking Changes](de/breaking_changes.md)
diff --git a/docs/de/newbs_learn_more_resources.md b/docs/de/newbs_learn_more_resources.md
index 59b72152dd..ac5adb0c12 100644
--- a/docs/de/newbs_learn_more_resources.md
+++ b/docs/de/newbs_learn_more_resources.md
@@ -6,7 +6,7 @@ Git Ressourcen:
* [Gutes allgemeines Tutorial](https://www.codecademy.com/learn/learn-git) (auf Englisch)
* [Git spielerisch anhand von Beispielen lernen](https://learngitbranching.js.org/) (auf Englisch)
-* [Mehr über den allgemeinen Umgang mit Github](getting_started_github.md)
+* [Mehr über den allgemeinen Umgang mit GitHub](getting_started_github.md)
* [Mehr über Git im Bezug zu QMK](contributing.md)
Mehr über die Arbeit mit der Befehlszeile:
diff --git a/docs/es/README.md b/docs/es/README.md
index d39b278008..75fd3cb64e 100644
--- a/docs/es/README.md
+++ b/docs/es/README.md
@@ -13,7 +13,7 @@ QMK (*Quantum Mechanical Keyboard*) es una comunidad open source que mantiene el
## Cómo conseguirlo
-Si estás pensando en contribuir con un keymap, teclado, or característica a QMK, la manera más sencilla es hacer un [fork del repositorio en Github](https://github.com/qmk/qmk_firmware#fork-destination-box), y clonar tu repositorio localmente para hacer los cambios, subirlos, y abir un [Pull Request](https://github.com/qmk/qmk_firmware/pulls) desde tu fork.
+Si estás pensando en contribuir con un keymap, teclado, or característica a QMK, la manera más sencilla es hacer un [fork del repositorio en GitHub](https://github.com/qmk/qmk_firmware#fork-destination-box), y clonar tu repositorio localmente para hacer los cambios, subirlos, y abir un [Pull Request](https://github.com/qmk/qmk_firmware/pulls) desde tu fork.
De cualquier manera, también puedes descargarlo directamente en formatos ([zip](https://github.com/qmk/qmk_firmware/zipball/master), [tar](https://github.com/qmk/qmk_firmware/tarball/master)), o clonarlo via git (`git@github.com:qmk/qmk_firmware.git`), o https (`https://github.com/qmk/qmk_firmware.git`).
diff --git a/docs/es/_summary.md b/docs/es/_summary.md
index b58d825f74..aa2a0ca5d9 100644
--- a/docs/es/_summary.md
+++ b/docs/es/_summary.md
@@ -11,7 +11,7 @@
* [QMK CLI](es/cli.md)
* [Configuración de QMK CLI](es/cli_configuration.md)
* [Contribuyendo a QMK](es/contributing.md)
- * [Cómo usar Github](es/getting_started_github.md)
+ * [Cómo usar GitHub](es/getting_started_github.md)
* [Obtener ayuda](es/getting_started_getting_help.md)
* [Cambios incompatibles](es/breaking_changes.md)
diff --git a/docs/es/newbs_best_practices.md b/docs/es/newbs_best_practices.md
index fc2afb9ed2..2f72eff788 100644
--- a/docs/es/newbs_best_practices.md
+++ b/docs/es/newbs_best_practices.md
@@ -6,7 +6,7 @@ Este documento procura instruir a los novatos en las mejores prácticas para ten
En este documento suponemos un par de cosas:
-1. Tienes una cuenta de Github, y has hecho un [fork del repo qmk_firmware](getting_started_github.md) en tu cuenta.
+1. Tienes una cuenta de GitHub, y has hecho un [fork del repo qmk_firmware](getting_started_github.md) en tu cuenta.
2. Has [configurado tu entorno de desarrollo](newbs_getting_started.md?id=environment-setup).
diff --git a/docs/es/newbs_building_firmware_configurator.md b/docs/es/newbs_building_firmware_configurator.md
index 9333159c2c..60d67f5fa4 100644
--- a/docs/es/newbs_building_firmware_configurator.md
+++ b/docs/es/newbs_building_firmware_configurator.md
@@ -21,7 +21,7 @@ Lo diré otra vez porque es importante
!> **ASEGÚRATE DE QUE SELECCIONAS LA VERSIÓN CORRECTA!**
-Si se ha anunciado que tu teclado funciona con QMK pero no está en la lista, es probable que un desarrollador no se haya encargado de él aún o que todavía no hemos tenido la oportunidad de incluirlo. Abre un issue en [qmk_firmware](https://github.com/qmk/qmk_firmware/issues) solicitando soportar ese teclado un particular, si no hay un [Pull Request](https://github.com/qmk/qmk_firmware/pulls?q=is%3Aopen+is%3Apr+label%3Akeyboard) activo para ello. Hay también teclados que funcionan con QMK que están en las cuentas de github de sus manufacturantes. Acuérdate de comprobar esto también.
+Si se ha anunciado que tu teclado funciona con QMK pero no está en la lista, es probable que un desarrollador no se haya encargado de él aún o que todavía no hemos tenido la oportunidad de incluirlo. Abre un issue en [qmk_firmware](https://github.com/qmk/qmk_firmware/issues) solicitando soportar ese teclado un particular, si no hay un [Pull Request](https://github.com/qmk/qmk_firmware/pulls?q=is%3Aopen+is%3Apr+label%3Akeyboard) activo para ello. Hay también teclados que funcionan con QMK que están en las cuentas de GitHub de sus manufacturantes. Acuérdate de comprobar esto también.
## Eligiendo el layout de tu teclado
diff --git a/docs/es/newbs_learn_more_resources.md b/docs/es/newbs_learn_more_resources.md
index 413b9ffa5e..34fd7556bf 100644
--- a/docs/es/newbs_learn_more_resources.md
+++ b/docs/es/newbs_learn_more_resources.md
@@ -6,7 +6,7 @@ Recursos de Git:
* [Excelente tutorial general](https://www.codecademy.com/learn/learn-git)
* [Juego de Git para aprender usando ejemplos](https://learngitbranching.js.org/)
-* [Recursos de Git para aprender más sobre Github](getting_started_github.md)
+* [Recursos de Git para aprender más sobre GitHub](getting_started_github.md)
* [Recursos de Git dirigidos específicamente a QMK](contributing.md)
diff --git a/docs/feature_userspace.md b/docs/feature_userspace.md
index ac0a1360d9..8665481db9 100644
--- a/docs/feature_userspace.md
+++ b/docs/feature_userspace.md
@@ -1,6 +1,6 @@
# Userspace: Sharing Code Between Keymaps
-If you use more than one keyboard with a similar keymap, you might see the benefit in being able to share code between them. Create your own folder in `users/` named the same as your keymap (ideally your github username, `<name>`) with the following structure:
+If you use more than one keyboard with a similar keymap, you might see the benefit in being able to share code between them. Create your own folder in `users/` named the same as your keymap (ideally your GitHub username, `<name>`) with the following structure:
* `/users/<name>/` (added to the path automatically)
* `readme.md` (optional, recommended)
@@ -73,7 +73,7 @@ The reason for this, is that `<name>.h` won't be added in time to add settings (
## Readme (`readme.md`)
-Please include authorship (your name, github username, email), and optionally [a license that's GPL compatible](https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses).
+Please include authorship (your name, GitHub username, email), and optionally [a license that's GPL compatible](https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses).
You can use this as a template:
```
@@ -93,7 +93,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
```
-You'd want to replace the year, name, email and github username with your info.
+You'd want to replace the year, name, email and GitHub username with your info.
Additionally, this is a good place to document your code, if you wish to share it with others.
diff --git a/docs/fr-fr/README.md b/docs/fr-fr/README.md
index 4527ec4b42..3743bedc97 100644
--- a/docs/fr-fr/README.md
+++ b/docs/fr-fr/README.md
@@ -4,8 +4,8 @@
[![Statut du build](https://travis-ci.org/qmk/qmk_firmware.svg?branch=master)](https://travis-ci.org/qmk/qmk_firmware)
[![Discord](https://img.shields.io/discord/440868230475677696.svg)](https://discord.gg/Uq7gcHh)
[![Statut de la doc](https://img.shields.io/badge/docs-ready-orange.svg)](https://docs.qmk.fm)
-[![Contributeurs Github](https://img.shields.io/github/contributors/qmk/qmk_firmware.svg)](https://github.com/qmk/qmk_firmware/pulse/monthly)
-[![Forks Github](https://img.shields.io/github/forks/qmk/qmk_firmware.svg?style=social&label=Fork)](https://github.com/qmk/qmk_firmware/)
+[![Contributeurs GitHub](https://img.shields.io/github/contributors/qmk/qmk_firmware.svg)](https://github.com/qmk/qmk_firmware/pulse/monthly)
+[![Forks GitHub](https://img.shields.io/github/forks/qmk/qmk_firmware.svg?style=social&label=Fork)](https://github.com/qmk/qmk_firmware/)
## Qu'est-ce que QMK Firmware ?
@@ -13,7 +13,7 @@ QMK (*Quantum Mechanical Keyboard*) est une communauté open source qui maintien
## Comment l'obtenir
-Si vous souhaitez contribuer à une disposition de clavier (keymap), ou à des fonctionnalités de QMK alors le plus simple est de [forker le dépôt avec Github](https://github.com/qmk/qmk_firmware#fork-destination-box) puis cloner le dépôt localement pour y faire des changements. Vous pourrez pousser vos changements sur github puis ouvrir un [Pull Request](https://github.com/qmk/qmk_firmware/pulls) depuis votre fork Github.
+Si vous souhaitez contribuer à une disposition de clavier (keymap), ou à des fonctionnalités de QMK alors le plus simple est de [forker le dépôt avec GitHub](https://github.com/qmk/qmk_firmware#fork-destination-box) puis cloner le dépôt localement pour y faire des changements. Vous pourrez pousser vos changements sur GitHub puis ouvrir un [Pull Request](https://github.com/qmk/qmk_firmware/pulls) depuis votre fork GitHub.
Sinon, vous pouvez aussi le télécharger directement en ([zip](https://github.com/qmk/qmk_firmware/zipball/master), [tar](https://github.com/qmk/qmk_firmware/tarball/master)), ou le cloner avec git en ssh (`git@github.com:qmk/qmk_firmware.git`), ou https (`https://github.com/qmk/qmk_firmware.git`).
diff --git a/docs/fr-fr/breaking_changes.md b/docs/fr-fr/breaking_changes.md
index 53bbb2212a..2dbb26e5a5 100644
--- a/docs/fr-fr/breaking_changes.md
+++ b/docs/fr-fr/breaking_changes.md
@@ -101,7 +101,7 @@ Ceci est fait immédiatement après la fusion de la branche `future` précédent
* [ ] Regroupe ChangeLog dans un fichier.
* [ ] `git commit -m 'Merge point for <DATE> Breaking Change'`
* [ ] `git push origin future`
-* Actions sur Github
+* Actions sur GitHub
* [ ] Crée un PR pour `future`
* [ ] S'assurer que Travis ne relève aucun problème
* [ ] Fusion le PR `future`
diff --git a/docs/fr-fr/getting_started_github.md b/docs/fr-fr/getting_started_github.md
index 48755625a7..76d107dfb9 100644
--- a/docs/fr-fr/getting_started_github.md
+++ b/docs/fr-fr/getting_started_github.md
@@ -6,11 +6,11 @@ GitHub peut être un peu compliqué pour ceux qui n'y sont pas familier. Ce guid
Commencez par la [page GitHub de QMK](https://github.com/qmk/qmk_firmware), et vous verrez un bouton dans le coin en haut à droite qui indique "Fork":
-![Fork on Github](http://i.imgur.com/8Toomz4.jpg)
+![Fork on GitHub](http://i.imgur.com/8Toomz4.jpg)
Si vous faites partie d'une organisation, vous aurez besoin de savoir quel compte utiliser pour le fork. Dans la plupart des cas, vous voudrez créer le fork dans votre compte personnel. Une fois le fork complet (cela peut quelques fois prendre un peu de temps), appuyez sur le bouton "Clone or download":
-![Download from Github](http://i.imgur.com/N1NYcSz.jpg)
+![Download from GitHub](http://i.imgur.com/N1NYcSz.jpg)
Faites attention à sélectionner "HTTPS", et sélectionnez le lien et copiez-le:
diff --git a/docs/fr-fr/newbs_best_practices.md b/docs/fr-fr/newbs_best_practices.md
index 1491013147..ec68a5e3e5 100644
--- a/docs/fr-fr/newbs_best_practices.md
+++ b/docs/fr-fr/newbs_best_practices.md
@@ -44,7 +44,7 @@ git pull upstream master
git push origin master
```
-Cela vous change la branche courante en master, synchronise les données de références du dépôt QMK vers votre ordinateur. La commande pull tire les données de références vers votre branche courante puis les y téleverse. La commande push permet de pousser la branche courante (master) vers votre fork github.
+Cela vous change la branche courante en master, synchronise les données de références du dépôt QMK vers votre ordinateur. La commande pull tire les données de références vers votre branche courante puis les y téleverse. La commande push permet de pousser la branche courante (master) vers votre fork GitHub.
### Faire des changements
diff --git a/docs/getting_started_github.md b/docs/getting_started_github.md
index 07f523f578..ae594f68d8 100644
--- a/docs/getting_started_github.md
+++ b/docs/getting_started_github.md
@@ -1,16 +1,16 @@
-# How to Use Github with QMK
+# How to Use GitHub with QMK
-Github can be a little tricky to those that aren't familiar with it - this guide will walk through each step of forking, cloning, and submitting a pull request with QMK.
+GitHub can be a little tricky to those that aren't familiar with it - this guide will walk through each step of forking, cloning, and submitting a pull request with QMK.
?> This guide assumes you're somewhat comfortable with running things at the command line, and have git installed on your system.
-Start on the [QMK Github page](https://github.com/qmk/qmk_firmware), and you'll see a button in the upper right that says "Fork":
+Start on the [QMK GitHub page](https://github.com/qmk/qmk_firmware), and you'll see a button in the upper right that says "Fork":
-![Fork on Github](http://i.imgur.com/8Toomz4.jpg)
+![Fork on GitHub](http://i.imgur.com/8Toomz4.jpg)
If you're a part of an organization, you'll need to choose which account to fork it to. In most circumstances, you'll want to fork it to your personal account. Once your fork is completed (sometimes this takes a little while), click the "Clone or Download" button:
-![Download from Github](http://i.imgur.com/N1NYcSz.jpg)
+![Download from GitHub](http://i.imgur.com/N1NYcSz.jpg)
And be sure to select "HTTPS", and select the link and copy it:
@@ -54,7 +54,7 @@ To https://github.com/whoeveryouare/qmk_firmware.git
+ 20043e64...7da94ac5 master -> master
```
-Your changes now exist on your fork on Github - if you go back there (`https://github.com/<whoeveryouare>/qmk_firmware`), you can create a "New Pull Request" by clicking this button:
+Your changes now exist on your fork on GitHub - if you go back there (`https://github.com/<whoeveryouare>/qmk_firmware`), you can create a "New Pull Request" by clicking this button:
![New Pull Request](http://i.imgur.com/DxMHpJ8.jpg)
diff --git a/docs/he-il/README.md b/docs/he-il/README.md
index 8e0c470b44..c16801b2bd 100644
--- a/docs/he-il/README.md
+++ b/docs/he-il/README.md
@@ -14,7 +14,7 @@ QMK (*Quantum Mechanical Keyboard*) היא קהילת קוד פתוח (open sour
## איך להשיג אותה
-אם אתם מתכננים לתרום מיפוי מקשים, מקלדת או יכולת ל QMK, הדבר הקל ביותר הוא [לעשות פורק לריפו בGithub](https://github.com/qmk/qmk_firmware#fork-destination-box), ולעשות קלון לריפו בסביבה המקומית ושם לבצע את השינויים שלכם, לדחוף אותם ולפתוח [Pull Request](https://github.com/qmk/qmk_firmware/pulls) מהפורק שלך.
+אם אתם מתכננים לתרום מיפוי מקשים, מקלדת או יכולת ל QMK, הדבר הקל ביותר הוא [לעשות פורק לריפו בGitHub](https://github.com/qmk/qmk_firmware#fork-destination-box), ולעשות קלון לריפו בסביבה המקומית ושם לבצע את השינויים שלכם, לדחוף אותם ולפתוח [Pull Request](https://github.com/qmk/qmk_firmware/pulls) מהפורק שלך.
אחרת, אפשר להוריד את הקושחה באופן ישיר ([zip](https://github.com/qmk/qmk_firmwar