diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 48a8eb2..a430c6c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -4,7 +4,7 @@ Provide a concise description of the changes in this pull request (e.g., correct ### Related Issues -Mention any related issues here, using the `#issue_number` syntax. +Mention related issues here, using the `#issue_number` syntax. ### Affected Tutorials diff --git a/2023/answers/MODULE_1_ANSWERS.md b/2023/answers/MODULE_1_ANSWERS.md index 75cefe8..133a1c3 100644 --- a/2023/answers/MODULE_1_ANSWERS.md +++ b/2023/answers/MODULE_1_ANSWERS.md @@ -15,7 +15,7 @@ 3. $(7+15)\ \text{mod}\ 13 = (22)\ \text{mod}\ 13 = 9$ 4. $(7\ \text{mod}\ 13 + 15\ \text{mod}\ 13)\ \text{mod}\ 13 = (7+2)\ \text{mod}\ 13 = 9$ -Since the results of the third and fourth calculations match, they do follow a "group structure." Notice that, it doesn't matter if you apply the `mod` immediately for each number (like in Q4) or at the end (like in Q3). +Since the results of the third and fourth calculations match, they follow a "group structure." Notice that, it doesn't matter if you apply the `mod` immediately for each number (like in Q4) or at the end (like in Q3). ## Generators @@ -57,4 +57,4 @@ modularCalculator('-', 10, 15, 12); // Should return: 7 modularCalculator('*', 10, 15, 12); // Should return: 6 ``` -These answers should align well with the content provided in the module, helping students to understand and practice the concepts of Zero-Knowledge Proofs and modular arithmetic. \ No newline at end of file +These answers should align well with the content provided in the module, helping students to understand and practice the concepts of Zero-Knowledge Proofs and modular arithmetic. diff --git a/README.md b/README.md index 19b6318..01939ee 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ We encourage contributions to improve this content. Please follow these steps: 1. **Analyze the Content**: Review the existing materials. 2. **Report Issues**: Create an issue if you find errors or areas for improvement. -3. **Submit Pull Requests**: Submit a pull request with your changes once you are confident they will be approved. +3. **Submit Pull Requests**: Submit a pull request with your changes once you are confident it will be approved. If an existing issue is not being worked on, feel free to address it and make a pull request.