From 09634b4a1fd39381cdf696afed8a29c989e8aeeb Mon Sep 17 00:00:00 2001 From: Venkat Date: Sat, 28 Mar 2026 17:44:51 +0530 Subject: [PATCH] docs: fix typo in section compute to computer --- .../server-side/django/development_environment/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md b/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md index 061b1d72f2a8623..ccb035c18164af4 100644 --- a/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md +++ b/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md @@ -420,7 +420,7 @@ When you want to backup some changes to a branch you can create a "commit", whic The repo is created with a default branch named "main". You can spawn other branches off this using git, which initially have all the commits of the original branch. You can evolve branches separately by adding commits, and then later on use a "Pull Request" (PR) on GitHub to merge changes from one branch to another. -You can also use git to switch between branches on your local compute, for example to try out different things. +You can also use git to switch between branches on your local computer, for example to try out different things. In addition to branches, it is possible to create `tags` on any branch and later recover that branch at that point.