From a83bca31f41c7df3f4939632d19aa349f4635267 Mon Sep 17 00:00:00 2001 From: AJaccP <112334043+AJaccP@users.noreply.github.com> Date: Sat, 14 Sep 2024 23:52:24 -0400 Subject: [PATCH] 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 --- .../2013-fall-midterm/1/generator.test.ts | 8 ++++---- src/pages/about.astro | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts index 0bc66f65..79b560d6 100644 --- a/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts +++ b/src/content/questions/comp2804/2013-fall-midterm/1/generator.test.ts @@ -1,7 +1,7 @@ import { describe, expect } from "@jest/globals"; import Generator from "./generator"; -describe("comp2804/2019-winter-final/1", () => { +describe("comp2804/2013-fall-midterm/1", () => { describe("createSetSizes", () => { it("will make sizeA smaller than sizeB", () => { const generator = new Generator(); @@ -43,7 +43,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption1", () => { - it("will return an option where the numerator and delimeter are flipped", () => { + it("will return an option where the numerator and denominator are flipped", () => { const generator = new Generator(); const option = generator.createIncorrectOption1(7, 13); @@ -54,7 +54,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption2", () => { - it("will return an option where the delimeter is one less than the correct option", () => { + it("will return an option where the denominator is one less than the correct option", () => { const generator = new Generator(); const option = generator.createIncorrectOption2(7, 13); @@ -65,7 +65,7 @@ describe("comp2804/2019-winter-final/1", () => { }); describe("createIncorrectOption3", () => { - 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", () => { + 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", () => { const generator = new Generator(); const option = generator.createIncorrectOption3(7, 13); diff --git a/src/pages/about.astro b/src/pages/about.astro index bc90109f..85538418 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -3,23 +3,23 @@ import Back from "@components/Back/Back.astro"; import { default as Layout } from "src/layouts/Content/Content.astro"; --- - +

About

- The Carleton Computer Science Question Repository is collection of practice - questions for Carleton University's Computer Science courses. The questions - are sourced from previous evaluations and are intended to help students - prepare for exams. + The Carleton Computer Science Question Repository is a collection of + practice questions for Carleton University's Computer Science courses. The + questions are sourced from previous evaluations and are intended to help + students prepare for exams.

The project was developed by students with resources and content provided by staff members of Carleton University's School of Computer Science.

- For those familliar with DiscreteMath.ca, this website is a modernized version built to support multiple courses and provide an easier experience for maintainers and volunteers. @@ -57,7 +57,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro";

In March 2020, the three would begin work on a project called the "Carleton - Computer Science Study Center", named to parralel the Discrete Math Study Center created by Prosenjit Bose and John Howat for COMP 1805 course. Using previous midterms and finals written by Michiel Smid and Pat Morin, Alexa manually formatted @@ -65,7 +65,7 @@ import { default as Layout } from "src/layouts/Content/Content.astro"; the website.

- In Summer 2021, Forest hosted another event focussed on developing + In Summer 2021, Forest hosted another event focused on developing interactive resources at Carleton: "Hacking COMP 1XXX" and Matthew led an effort to rebuild the site with a group of volunteers including Damilola 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"; maintainers and volunteers to contribute to the project. All content was moved to a new repository and the project was renamed to "Carleton Computer Science Question Repository". John Lu and Nguyen-Hanh Nong also collaborated - on writting out solutions for almost all of the past COMP 2804 questions. + on writing out solutions for almost all of the past COMP 2804 questions. John Lu also tagged all questions with tags related to their associated course chapter, enabling students to be able to practice questions based on the chapter they are currently studying.