-
-
Notifications
You must be signed in to change notification settings - Fork 360
fix grammar #302
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
fix grammar #302
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of these changes are personal preference, and some changes must be addressed for all the changes to be technically correct.
Also: Why did you close the previous PR? If you just pushed changes to that branch, the changes will automatically appear here.
@@ -51,7 +51,7 @@ git config --global user.email name@email.com | |||
Obviously, use your own name and e-mail... unless your name is actually *name* and your e-mail is actually *name@email.com*, in which case the above commands are correct. | |||
In the rare case that a user named "name" with the e-mail "name@email.com" is reading this, I apologize for spoiling your anonymity. | |||
For everyone else, remember that git is meant to facilitate collaborative code development, so we need to know who is submitting code so we can communicate more effectively later. | |||
That said, it is alright to use a username and e-mail address that does not spoil your identity in the real world, so long as you are reachable by the information provided. | |||
That said, it is alright to use an username and e-mail address that does not spoil your identity in the real world, so long as you are reachable by the information provided. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be "a" not "an"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
@@ -73,7 +73,7 @@ Regardless, as long as there is a repository under your username on github, we c | |||
<img class="center" src="res/clone.png" /> | |||
</p> | |||
|
|||
Note that there are 2 provided urls here, one for *ssh* and another for *https*. From the user's perspective, the difference between the two is minimal: ssh requires the user to type only a password when interacting with the remote github repository, while https requires both a username and password. | |||
Note that there are 2 provided urls here, one for *ssh* and another for *https*. From the user's perspective, the difference between the two is minimal: ssh requires the user to type only a password when interacting with the remote github repository, while https requires both an username and password. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, "a" not "an"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
@@ -7,7 +7,7 @@ In some sense, this is what I love about computer science research! | |||
It takes operations that everyone knows and loves, abstracts them, and transforms them into fast and efficient methods for the computer to implement. | |||
Sometimes these algorithms are completely baffling. | |||
I remember laughing for ten minutes after I heard that fft convolutions could be used to calculate a simple integer multiplicationing the Schönhage–Strassen algorithm. | |||
I thought, "Why would you ever want to use an fft to do something to trivial? This has to be a joke!" | |||
I thought, "Why would you ever want to use a fft to do something to trivial? This has to be a joke!" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"an" instead of "a"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to "an FFT(Fast Fourier Transform)"
@@ -129,7 +129,7 @@ In the end, the code looks like: | |||
{% endmethod %} | |||
|
|||
As a side note, we are enforcing that the array must be a power of 2 for the operation to work. | |||
This is a limitation of the fact that we are using recursion and dividing the array in 2 every time; however, if your array is not a power of 2, you can simply pad the leftover space with 0's until your array is a power of 2. | |||
This is a limitation of the fact that we are using recursion and dividing the array into 2 every time; however, if your array is not a power of 2, you can simply pad the leftover space with 0's until your array is a power of 2. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically "in" is more correct here. We could say that we divide the array "into 2 equally sized sub-arrays" or something, but "into" requires the objects you are splitting the array into.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes it back to "in"
3. You can add any row to a multiple of any other row | ||
1. swap any two rows | ||
2. multiply any row by a non-zero scale value | ||
3. add any row to a multiple of any other row |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are both technically incorrect here. I should have ended each of my sentences; however, with this new structure, the list is a long run-on sentence. We can change the above sentence to:
"In the end, reducing large systems of equations boils down to a game you play on a seemingly random matrix with 3 possible moves. You can:"
Then the sentence would make sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed it
@@ -139,7 +139,7 @@ git status | |||
``` | |||
|
|||
This will show that `CONTRIBUTORS.md` has been modified. | |||
If we want to save our changes, we need to add all of the files with changes to them to a package called a `commit`. | |||
If we want to save our changes, we need to add all the files with changes to them to a package called a `commit`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is kinda personal preference, but I like the "of" in there.
@@ -214,7 +214,7 @@ To switch branches, use | |||
git checkout branch | |||
``` | |||
|
|||
And this will change all of the files on your local directory to match the branch you have swapped to. | |||
And this will change all the files on your local directory to match the branch you have swapped to. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again personal preference, but the "of" just sounds clearer to me.
@leios How is the status of this PR? Are you happy with the updated changes? |
No, there are still a few things that need to be addressed. |
@leios by them or by you? |
By them |
Ok. Do you still plan to work on this PR @Mukundan314 ? |
No |
Oh, shoot. Sorry @Mukundan314 I didn't realize you had addressed the problems. There are still a few things that are personal preference, but it's mostly fine. |
No description provided.