Skip to content

Commit a83bca3

Browse files
authored
Add small fixes in about page and generator test files (#31)
* Update about page title * Fix about page typos * linting * fix generator tests typos * update evaluation in generator test file
1 parent c785a66 commit a83bca3

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect } from "@jest/globals";
22
import Generator from "./generator";
33

4-
describe("comp2804/2019-winter-final/1", () => {
4+
describe("comp2804/2013-fall-midterm/1", () => {
55
describe("createSetSizes", () => {
66
it("will make sizeA smaller than sizeB", () => {
77
const generator = new Generator();
@@ -43,7 +43,7 @@ describe("comp2804/2019-winter-final/1", () => {
4343
});
4444

4545
describe("createIncorrectOption1", () => {
46-
it("will return an option where the numerator and delimeter are flipped", () => {
46+
it("will return an option where the numerator and denominator are flipped", () => {
4747
const generator = new Generator();
4848

4949
const option = generator.createIncorrectOption1(7, 13);
@@ -54,7 +54,7 @@ describe("comp2804/2019-winter-final/1", () => {
5454
});
5555

5656
describe("createIncorrectOption2", () => {
57-
it("will return an option where the delimeter is one less than the correct option", () => {
57+
it("will return an option where the denominator is one less than the correct option", () => {
5858
const generator = new Generator();
5959

6060
const option = generator.createIncorrectOption2(7, 13);
@@ -65,7 +65,7 @@ describe("comp2804/2019-winter-final/1", () => {
6565
});
6666

6767
describe("createIncorrectOption3", () => {
68-
it("will return an option where the numerator is one less than the correct option and the delimeter is one more than the correct option", () => {
68+
it("will return an option where the numerator is one less than the correct option and the denominator is one more than the correct option", () => {
6969
const generator = new Generator();
7070

7171
const option = generator.createIncorrectOption3(7, 13);

src/pages/about.astro

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ import Back from "@components/Back/Back.astro";
33
import { default as Layout } from "src/layouts/Content/Content.astro";
44
---
55

6-
<Layout title="Changelog">
6+
<Layout title="About">
77
<div class="Question__bar">
88
<Back href={`/`} label="Home" />
99
</div>
1010
<h1>About</h1>
1111
<p>
12-
The Carleton Computer Science Question Repository is collection of practice
13-
questions for Carleton University's Computer Science courses. The questions
14-
are sourced from previous evaluations and are intended to help students
15-
prepare for exams.
12+
The Carleton Computer Science Question Repository is a collection of
13+
practice questions for Carleton University's Computer Science courses. The
14+
questions are sourced from previous evaluations and are intended to help
15+
students prepare for exams.
1616
</p>
1717
<p>
1818
The project was developed by students with resources and content provided by
1919
staff members of Carleton University's School of Computer Science.
2020
</p>
2121
<p>
22-
For those familliar with <a href="https://discretemath.ca/#/"
22+
For those familiar with <a href="https://discretemath.ca/#/"
2323
>DiscreteMath.ca</a
2424
>, this website is a modernized version built to support multiple courses
2525
and provide an easier experience for maintainers and volunteers.
@@ -57,15 +57,15 @@ import { default as Layout } from "src/layouts/Content/Content.astro";
5757
</p>
5858
<p>
5959
In March 2020, the three would begin work on a project called the "Carleton
60-
Computer Science Study Center", named to parralel the <a
60+
Computer Science Study Center", named to parallel the <a
6161
href="https://cglab.ca/~discmath/about.html">Discrete Math Study Center</a
6262
> created by Prosenjit Bose and John Howat for COMP 1805 course. Using previous
6363
midterms and finals written by Michiel Smid and Pat Morin, Alexa manually formatted
6464
and organized each question from 2013-2019. Matthew wrote the first version of
6565
the website.
6666
</p>
6767
<p>
68-
In Summer 2021, Forest hosted another event focussed on developing
68+
In Summer 2021, Forest hosted another event focused on developing
6969
interactive resources at Carleton: "Hacking COMP 1XXX" and Matthew led an
7070
effort to rebuild the site with a group of volunteers including Damilola
7171
Adesola, Elias Hawa, Erica Li, Jonathon Steeves, and Robert Babaev. This
@@ -90,7 +90,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro";
9090
maintainers and volunteers to contribute to the project. All content was
9191
moved to a new repository and the project was renamed to "Carleton Computer
9292
Science Question Repository". John Lu and Nguyen-Hanh Nong also collaborated
93-
on writting out solutions for almost all of the past COMP 2804 questions.
93+
on writing out solutions for almost all of the past COMP 2804 questions.
9494
John Lu also tagged all questions with tags related to their associated
9595
course chapter, enabling students to be able to practice questions based on
9696
the chapter they are currently studying.

0 commit comments

Comments
 (0)