From 622244e1cf25017efa92db256a83c35f5d301a9c Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:03:35 +0300
Subject: [PATCH 1/7] typo corr aivm.md
---
docs/aivm.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/aivm.md b/docs/aivm.md
index f20fc27..c3eceea 100644
--- a/docs/aivm.md
+++ b/docs/aivm.md
@@ -209,7 +209,7 @@ Custom models must meet these requirements:
### Next Steps
-Now you can check out the [examples](https://github.com/NillionNetwork/nillion-aivm/tree/main/examples) folder and get started with your own fine-tuned nd custom models.
+Now you can check out the [examples](https://github.com/NillionNetwork/nillion-aivm/tree/main/examples) folder and get started with your own fine-tuned and custom models.
You can try:
From 02e290843340881d2461f0153c07156a47c1a707 Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:05:41 +0300
Subject: [PATCH 2/7] typo corr first-steps.md
---
docs/first-steps.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/first-steps.md b/docs/first-steps.md
index 780d0b9..02ff5f4 100644
--- a/docs/first-steps.md
+++ b/docs/first-steps.md
@@ -2,7 +2,7 @@
πΒ Hey, welcome to [Nillion](https://docs.nillion.com/).
-This page will help you take your first steps (~30 mins) as a Nillion developer. Once you have completed them, fill out the form for your chance to claim your $20 prize - each week we will review the submissions and pick the best to recieve a prize π
+This page will help you take your first steps (~30 mins) as a Nillion developer. Once you have completed them, fill out the form for your chance to claim your $20 prize - each week we will review the submissions and pick the best to receive a prize π
1. Star & fork either the [Python](https://github.com/NillionNetwork/nillion-python-starter) or [JavaScript](https://github.com/NillionNetwork/cra-nillion) quickstart repos (bonus points for both)
From d8fd0e89b9f2ef965b4979f82a03deddb24d826a Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:14:19 +0300
Subject: [PATCH 3/7] typo corr nada-lang-programs.md
---
docs/nada-lang-programs.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/nada-lang-programs.md b/docs/nada-lang-programs.md
index 0c20521..250b272 100644
--- a/docs/nada-lang-programs.md
+++ b/docs/nada-lang-programs.md
@@ -26,7 +26,7 @@ The [`tiny_addition.py`](https://github.com/nillion-oss/nillion-python-starter/b
Input name | Input type | Party name |
---|
`my_secret_1` | `SecretInteger` | `Nilla πΆ` |
`my_secret_2` | `SecretInteger` | `Nilla πΆ` |
-The program [`tiny_addition.py`](https://github.com/nillion-oss/nillion-python-starter/blob/main/programs/tiny_secret_addition_complete.py) returns an [Output](concepts.md#outputs) to a [Party](concepts.md#party). Only that party sees the output because it it of type `SecretInteger`.
+The program [`tiny_addition.py`](https://github.com/nillion-oss/nillion-python-starter/blob/main/programs/tiny_secret_addition_complete.py) returns an [Output](concepts.md#outputs) to a [Party](concepts.md#party). Only that party sees the output because it of type `SecretInteger`.
From 29acaf3fa471c371a551370a666d896670cacd32 Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:19:35 +0300
Subject: [PATCH 4/7] typo corr nada-numpy-introduction.md
---
docs/nada-numpy-introduction.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/nada-numpy-introduction.md b/docs/nada-numpy-introduction.md
index 3f5062d..22df0c5 100644
--- a/docs/nada-numpy-introduction.md
+++ b/docs/nada-numpy-introduction.md
@@ -120,7 +120,7 @@ Finally, we need to produce the output. Since `NadaArray` is not a base Nada typ
return res.output(parties[2], "my_output")
```
-In this case, we'll be invoking `res.output(parties[2], "my_output")` establishing that the output party will be `Party2`and the name of the output variable will be `"my_output"`.
+In this case, we'll be invoking `res.output(parties[2], "my_output")` establishing that the output party will be `Party2` and the name of the output variable will be `"my_output"`.
With everything in place, we can build and test our program:
@@ -130,7 +130,7 @@ nada build
## Using Nada Numpy with Nillion Network
-After completing the program writing, we can upload it and interact with it in the network with the ease provided by Nada Numpy. For that, we use the Python Nillion Client. We can use the same complete code as for other examples. The only difference is how Nada Numpy allows to easily include arrays in our uploads to the Nillion Networ with the Nada Numpy client. We add the link to the [complete code](https://github.com/NillionNetwork/nada-algebra/blob/main/examples/broadcasting/main.py).
+After completing the program writing, we can upload it and interact with it in the network with the ease provided by Nada Numpy. For that, we use the Python Nillion Client. We can use the same complete code as for other examples. The only difference is how Nada Numpy allows to easily include arrays in our uploads to the Nillion Network with the Nada Numpy client. We add the link to the [complete code](https://github.com/NillionNetwork/nada-algebra/blob/main/examples/broadcasting/main.py).
First, import the necessary modules:
From 48e4937bb3ff0a8f31a324864c48cf8105b5b9f9 Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:21:18 +0300
Subject: [PATCH 5/7] typo corr nada.md
---
docs/nada.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/nada.md b/docs/nada.md
index d3798c5..3d7fd4a 100644
--- a/docs/nada.md
+++ b/docs/nada.md
@@ -291,7 +291,7 @@ Run a program with the --metrics flag to retrieve detailed execution metrics of
- json: Outputs metrics in JSON format and saves it to a metrics.json file.
- yaml: Outputs metrics in YAML format and saves it to a metrics.yaml file.
-For detailed information on the metrics reported, pleas, visit the [Nada Metrics](/nada-metrics) section.
+For detailed information on the metrics reported, please, visit the [Nada Metrics](/nada-metrics) section.
#### Example metrics usage
@@ -612,4 +612,4 @@ https://github.com/NillionNetwork/nada-by-example/blob/main/src/list_scan_linear
https://github.com/NillionNetwork/nada-by-example/blob/main/tests/list_scan_linear_test.yaml
```
-
\ No newline at end of file
+
From 3f3dcfa9ede8b83a89057c023d9cb7d86247d736 Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:24:46 +0300
Subject: [PATCH 6/7] typo corr python-quickstart.md
---
docs/python-quickstart.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/python-quickstart.md b/docs/python-quickstart.md
index 2ada6a9..29d1ebb 100644
--- a/docs/python-quickstart.md
+++ b/docs/python-quickstart.md
@@ -44,7 +44,7 @@ The [Nillion Python Starter repo](https://github.com/NillionNetwork/nillion-pyth
source .venv/bin/activate
```
-5. Intall the requirements
+5. Install the requirements
```bash
pip install --upgrade -r requirements.txt
```
@@ -430,7 +430,7 @@ Congratulations, you've successfully written your first single party Nada progra
- Examples:
- [single party examples](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/core_concept_single_party_compute)
- [multi-party examples](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/core_concept_multi_party_compute)
- - [storing and retrieving intergers and blobs](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/core_concept_store_and_retrieve_secrets)
+ - [storing and retrieving integers and blobs](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/core_concept_store_and_retrieve_secrets)
- [using permissions](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/core_concept_permissions)
- Tutorials:
- [Voting schemes](https://github.com/NillionNetwork/python-examples/tree/main/examples_and_tutorials/voting_tutorial)
From 0fd74ee05965b1a108fb1f6dc6b6de2d01e3397f Mon Sep 17 00:00:00 2001
From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:28:00 +0300
Subject: [PATCH 7/7] typo corr start-building.md
---
docs/start-building.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/start-building.md b/docs/start-building.md
index 1c29a49..3342840 100644
--- a/docs/start-building.md
+++ b/docs/start-building.md
@@ -8,7 +8,7 @@ The [Nada Quickstart](/quickstart-nada) will teach you how to create a Nada proj
## Build a Blind App
-This [Blind App Quickstart](/quickstart) is ideal for developers interested in **building frontends or fullstack web apps** on Nillion. This quickstart will guide you through writing a Nada program, storing the program on the Nillion Netowrk, and creating a blind web app lets you store secrets and run your Nada program in the browser.
+This [Blind App Quickstart](/quickstart) is ideal for developers interested in **building frontends or fullstack web apps** on Nillion. This quickstart will guide you through writing a Nada program, storing the program on the Nillion Network, and creating a blind web app lets you store secrets and run your Nada program in the browser.
## Connect a backend to Nillion
@@ -17,4 +17,4 @@ If you want to **connect a backend** to Nillion, check out the Nillion [Python Q
## Write a privacy-preserving Blind AI Nada program
-To write privacy-preserving AI programs, check out our [Nada AI](/nada-by-example/nada-ai) examples, tutorials, and Google Colab links.
\ No newline at end of file
+To write privacy-preserving AI programs, check out our [Nada AI](/nada-by-example/nada-ai) examples, tutorials, and Google Colab links.