From 77d753263386bf8defdc8863fbad0c7db89d6481 Mon Sep 17 00:00:00 2001 From: Eugenie Ahangama Date: Tue, 13 Jan 2026 00:30:11 +0000 Subject: [PATCH 1/2] Fixed errors in Linus's homework --- homework.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/homework.md b/homework.md index f7a8449a..38eea485 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,26 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +A programming language used to make websotes interactive. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +- Keep track of changes to code (version control). +- Working safely on different features using branches. +- Collaborating with others without overwritting each other's work. ## 4. What happens when you `fork` a repository? -You delete it +You create your own copy of someone else's repository on your GitHub account. ## 5. What happens when you clone a repository? -It send it to a friend +You download the repository from GitHub to your computer so you can work on it locally. ## 6. What is a Pull Request? -When you send a file over the internet +A request to merge your changes into another branch or repository, usually for review. \ No newline at end of file From 066477f72730a5a497cdafa84940cb93a9490c63 Mon Sep 17 00:00:00 2001 From: Eugenie Ahangama Date: Tue, 13 Jan 2026 00:32:50 +0000 Subject: [PATCH 2/2] Fixed spelling mistake in homework.md --- homework.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework.md b/homework.md index 38eea485..742fa91e 100644 --- a/homework.md +++ b/homework.md @@ -6,7 +6,7 @@ ## 2. What is JavaScript? -A programming language used to make websotes interactive. +A programming language used to make websites interactive. ## 3. What three problems does Git & GitHub solve?