Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed two typos in the Readme #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Labs/Lab6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ where `<clone URL>` is the URL you just copied to your clipboard.

## Step 0: The project

The project we will be working with is a simple 4-function calculator written in Python. See the [project page](https://github.com/Purdue-CSUSB/pycalc) for steps on how to use the calculator on how to use the calculator.
The project we will be working with is a simple 4-function calculator written in Python. See the [project page](https://github.com/Purdue-CSUSB/pycalc) for steps on how to use the calculator.

## Step 1: Check the status of the repo

Expand Down Expand Up @@ -110,7 +110,7 @@ Again, add the files to track their changes in git. Commit the change you made,

The current state of our calculator isn't so great. It prints a welcome message (nice!) but it doesn't subtract properly (yikes!).

Run `git log`. Find the commit that you breaks the subtraction function (it should be the second from the top) and copy the commit hash.
Run `git log`. Find the commit that breaks the subtraction function (it should be the second from the top) and copy the commit hash.

Run `git revert <commit_hash>`. This will open up an editor with a commit that says something like
"Revert '*some message*' This commit reverts *some commit hash*".
Expand Down