From 653333c58fcb93ffac13afb4ffa2cfd4a50c77f3 Mon Sep 17 00:00:00 2001
From: Pavaloiu Gabriel <gabrieln.pavaloiu@gmail.com>
Date: Sat, 15 Mar 2025 08:05:03 +0200
Subject: [PATCH 1/5] fixed danutz github

---
 website/versioned_docs/version-fils_en/welcome/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/versioned_docs/version-fils_en/welcome/index.md b/website/versioned_docs/version-fils_en/welcome/index.md
index eb9d2ae..d34dd10 100644
--- a/website/versioned_docs/version-fils_en/welcome/index.md
+++ b/website/versioned_docs/version-fils_en/welcome/index.md
@@ -56,7 +56,7 @@ teodor.dicu@wyliodrin.com
 ![Danut Aldea](images/danut_aldea.jpg)
  
 Lab Professor \
-Responsible for software
+Responsible for software \
 GitHub: [danutaldea](https://github.com/danutaldea) \
 danut.aldea@oxidos.io
 </td>
-- 
GitLab


From 4346dc5f3473710fe1adb90670b1d0ab8438958e Mon Sep 17 00:00:00 2001
From: Pavaloiu Gabriel <gabrieln.pavaloiu@gmail.com>
Date: Sat, 15 Mar 2025 08:24:18 +0200
Subject: [PATCH 2/5] fixed typo welcome page cc

---
 website/versioned_docs/version-acs_cc/welcome/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/versioned_docs/version-acs_cc/welcome/index.md b/website/versioned_docs/version-acs_cc/welcome/index.md
index aecef32..4a618bc 100644
--- a/website/versioned_docs/version-acs_cc/welcome/index.md
+++ b/website/versioned_docs/version-acs_cc/welcome/index.md
@@ -117,7 +117,7 @@ alexagungureanu@gmail.com
 
 | Part | Description | Points |
 |--------|-------------|--------|
-| [Lecture](./category/lecture) tests | You will have a test every few classes with subjects from the previous class (will pe anounced). | 2p |
+| [Lecture](./category/lecture) tests | You will have a test every few classes with subjects from the previous class (will be anounced). | 2p |
 | [Lab](./category/lab) | Your work at every lab will be graded. | 1p |
 | [Lab](./category/lab) | Final Lab Assigment (Final Lab Test) | 1p |
 | [Project](./project) | You will have to design and implement a hardware device. Grading will be done for the documentation, hardware design and software development. | 3p |
-- 
GitLab


From d8be88bd5b4a605f859733ebb303551c8d9d8d14 Mon Sep 17 00:00:00 2001
From: Pavaloiu Gabriel <gabrieln.pavaloiu@gmail.com>
Date: Sat, 15 Mar 2025 08:25:42 +0200
Subject: [PATCH 3/5] fixed stuff lab0

---
 website/lab/00.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/website/lab/00.md b/website/lab/00.md
index 749394d..43ba722 100644
--- a/website/lab/00.md
+++ b/website/lab/00.md
@@ -72,7 +72,7 @@ fn main() {
     let age = 26;
 
     println!("Hello, {}. You are {} years old", name, age);
-    // if the replacements are only variable, one can use the inline version
+    // if the replacements are only variables, one can use the inline version
     println!("Hello, {name}. You are {age} years old");
 }
 ```
@@ -155,7 +155,7 @@ let y: u16 = 25;
 | 32-bit |   `i32`   | `u32` | `int` / `Integer`[^java_unsigned] | `int` / `unsigned int` |
 | 64-bit |   `i64`   | `u64` | `long` / `Long`[^java_unsigned] | `long long` / `unsigned long long` |
 | 128-bit |   `i128`   | `u128` | N/A | N/A |
-| arch |   `isize`   | `usize` | N/A | `int` / `unsigned int` |
+| arch |   `isize`   | `usize` | N/A | `size_t` |
 
 **Floating Point** → Rust's floating point types are `f32` and `f64`, which are 32-bit and 64-bit in size, respectively. The default type is `f64` because on modern CPUs it is about the same speed as `f32` but is capable of more precision. All floating point types are **signed**.
 
@@ -341,7 +341,7 @@ To format the `Debug` nicely use `{:#?}`.
 
 ### Tuple structures
 
-Tuples are the same construct as structures, just that instead of using names for their field, they use numbers (indexes).
+Tuples are the same as structures, just that instead of using names for their fields, they use numbers (indexes).
 
 ```rust
 struct Color(i32, i32, i32);
-- 
GitLab


From aa8a2cf8d85420958701fbc496cca0da7bfcb215 Mon Sep 17 00:00:00 2001
From: GabrielPavaloiu <gabriel.pavaloiu@upb.ro>
Date: Tue, 18 Mar 2025 05:17:53 +0000
Subject: [PATCH 4/5] Apply 1 suggestion(s) to 1 file(s)

---
 website/lab/00.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/lab/00.md b/website/lab/00.md
index 43ba722..2944c7e 100644
--- a/website/lab/00.md
+++ b/website/lab/00.md
@@ -155,7 +155,7 @@ let y: u16 = 25;
 | 32-bit |   `i32`   | `u32` | `int` / `Integer`[^java_unsigned] | `int` / `unsigned int` |
 | 64-bit |   `i64`   | `u64` | `long` / `Long`[^java_unsigned] | `long long` / `unsigned long long` |
 | 128-bit |   `i128`   | `u128` | N/A | N/A |
-| arch |   `isize`   | `usize` | N/A | `size_t` |
+| arch |   `isize`   | `usize` | N/A | `intptr_t`/`uintptr_t` |
 
 **Floating Point** → Rust's floating point types are `f32` and `f64`, which are 32-bit and 64-bit in size, respectively. The default type is `f64` because on modern CPUs it is about the same speed as `f32` but is capable of more precision. All floating point types are **signed**.
 
-- 
GitLab


From 75b331d86ae3327dcc3bf348e08f65398238123d Mon Sep 17 00:00:00 2001
From: Pavaloiu Gabriel <gabrieln.pavaloiu@gmail.com>
Date: Tue, 18 Mar 2025 07:23:38 +0200
Subject: [PATCH 5/5] added spaces to intptr_t

---
 website/lab/00.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/lab/00.md b/website/lab/00.md
index 2944c7e..dab83f1 100644
--- a/website/lab/00.md
+++ b/website/lab/00.md
@@ -155,7 +155,7 @@ let y: u16 = 25;
 | 32-bit |   `i32`   | `u32` | `int` / `Integer`[^java_unsigned] | `int` / `unsigned int` |
 | 64-bit |   `i64`   | `u64` | `long` / `Long`[^java_unsigned] | `long long` / `unsigned long long` |
 | 128-bit |   `i128`   | `u128` | N/A | N/A |
-| arch |   `isize`   | `usize` | N/A | `intptr_t`/`uintptr_t` |
+| arch |   `isize`   | `usize` | N/A | `intptr_t` / `uintptr_t` |
 
 **Floating Point** → Rust's floating point types are `f32` and `f64`, which are 32-bit and 64-bit in size, respectively. The default type is `f64` because on modern CPUs it is about the same speed as `f32` but is capable of more precision. All floating point types are **signed**.
 
-- 
GitLab