Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
EdmundGoodman committed May 10, 2021
1 parent d8d6d6a commit 57d1645
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 22 deletions.
8 changes: 2 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To ensure the smooth running of the this project, and avoid any contributions ha
- Please do not re-host any university owned content, including but not limited to past papers and lecture notes

### How do I display Math?
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. Otherwise, add it into the front matter, then make sure you wrap the math in `$$`.
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. If it's not there, add it into the front matter.

For math sections (ensure that there's a new line before and after the start and end `$$` respectively):
```
Expand All @@ -34,11 +34,7 @@ $$
$$
```

or for in-line math:

```
$$1+1=2$$ for in-line math
```
or `$$1+1=2$$` for in-line math

If there is no YAML Front Matter you can add it at the top of the file like this:
```
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you've been linked to this site, you've probably also seen us asking for anyo

1. Our course isn't marked on a curve, so others using your notes to get better doesn't detriment you
2. Making notes is a great way to revise, as it makes sure you properly understand the content, and if you know you’re putting them somewhere it gives you accountability to actually get them done
3. Any content that is contributed is great to have - it doesn't have to be perfect! The beauty of these type of projects is that it inherently allows collaboration, so we can work together to improve any problems you think might be present
3. Any content that is contributed is great to have - it doesn't have to be perfect! The beauty of these types of projects is that they inherently allow collaboration, so we can work together to improve any problems you think might be present
4. Having experience collaborating on an open source project through tools like Git is a really useful skill and is a lot more exciting than what we did with it in CS133, and being able give this as an example of where you've done it in practice could be a cool thing to put on your CV
5. You'll get a neat icon of you in the contributors section of the README and index pages!

Expand Down Expand Up @@ -65,7 +65,7 @@ To ensure the smooth running of the this project, and avoid any contributions ha
- Please do not re-host any university owned content, including but not limited to past papers and lecture notes

### How do I display Math?
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. Otherwise, add it into the front matter, then make sure you wrap the math in `$$`.
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. If it's not there, add it into the front matter.

For math sections (ensure that there's a new line before and after the start and end `$$` respectively):
```
Expand All @@ -74,11 +74,7 @@ $$
$$
```

or for in-line math:

```
$$1+1=2$$ for in-line math
```
or `$$1+1=2$$` for in-line math

If there is no YAML Front Matter you can add it at the top of the file like this:
```
Expand Down
3 changes: 1 addition & 2 deletions cs126/part10.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ nex: part11
- AVL trees are a concrete implementation of self-balancing binary search tree
- Insertion and deletion operations re-arrange the tree to ensure it remains balanced
- Named after its creators, Adelson, Velsky and Landis
- Named after its creators, Adelson-Velsky and Landis
- Other self-balancing binary search trees exist, such as red-black trees, but this is a common approach to implementing such an ADT
- Requirements to be a self-balancing binary search tree
Expand All @@ -98,7 +98,6 @@ nex: part11
- Deletion
- Performance
- In all cases, the space complexity is $$O(n)$$
Expand Down
10 changes: 3 additions & 7 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If you've been linked to this site, you've probably also seen us asking for anyo

1. Our course isn't marked on a curve, so others using your notes to get better doesn't detriment you
2. Making notes is a great way to revise, as it makes sure you properly understand the content, and if you know you’re putting them somewhere it gives you accountability to actually get them done
3. Any content that is contributed is great to have - it doesn't have to be perfect! The beauty of these type of projects is that it inherently allows collaboration, so we can work together to improve any problems you think might be present
3. Any content that is contributed is great to have - it doesn't have to be perfect! The beauty of these types of projects is that they inherently allow collaboration, so we can work together to improve any problems you think might be present
4. Having experience collaborating on an open source project through tools like Git is a really useful skill and is a lot more exciting than what we did with it in CS133, and being able give this as an example of where you've done it in practice could be a cool thing to put on your CV
5. You'll get a neat icon of you in the contributors section of the README and index pages!

Expand Down Expand Up @@ -71,7 +71,7 @@ To ensure the smooth running of the this project, and avoid any contributions ha
- Please do not re-host any university owned content, including but not limited to past papers and lecture notes

### How do I display Math?
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. Otherwise, add it into the front matter, then make sure you wrap the math in `$$`.
Firstly, ensure that the top of the markdown (.md) file has YAML Front Matter containing the key-value pair `math: true`. If it's not there, add it into the front matter.

For math sections (ensure that there's a new line before and after the start and end `$$` respectively):
```
Expand All @@ -80,11 +80,7 @@ $$
$$
```

or for in-line math:

```
$$1+1=2$$ for in-line math
```
or `$$1+1=2$$` for in-line math

If there is no YAML Front Matter you can add it at the top of the file like this:
```
Expand Down

0 comments on commit 57d1645

Please sign in to comment.