Merge remote-tracking branch 'upstream/main'

This commit is contained in:
static
2024-10-28 05:41:06 +00:00
4 changed files with 5 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ use std::ops::*;
///
/// The `sign_extension()`, `two_complement()`, and `truncate()` are non-mandatory helper methods.
///
/// For testing and debugging pruposes, the `Display` trait is implemented for you, which shows the
/// For testing and debugging purposes, the `Display` trait is implemented for you, which shows the
/// integer in hexadecimal form.
#[derive(Debug, Clone)]
pub struct BigInt {

View File

@@ -9,7 +9,7 @@ use itertools::Itertools;
///
/// Returns `true` if the length of sequence is less or equal than 2.
///
/// # Exmample
/// # Example
///
/// ```
/// use cs220::assignments::assignment09::small_exercises::*;