Skip to content

Commit 4fa7793

Browse files
committed
fix format
1 parent 0b52096 commit 4fa7793

File tree

7 files changed

+24
-25
lines changed

7 files changed

+24
-25
lines changed

src/guides/build-iapp/advanced/build-your-first-tdx-iapp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ EXPERIMENTAL_TDX_APP=true iapp run <app-address>
277277
- **[Debugging Your iApp](/guides/build-iapp/debugging)** - Troubleshoot
278278
execution issues and TDX-specific problems
279279
- **[Inputs](/guides/build-iapp/inputs)** - Handle data inputs
280-
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs
281-
in TEE environment with TDX
280+
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs in TEE
281+
environment with TDX
282282
- **[iApp Access Control and Pricing](/guides/build-iapp/manage-access)** -
283283
Configure access control for your TDX applications
284284

src/guides/build-iapp/debugging.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ except Exception as e:
170170
Continue improving your iApp:
171171

172172
- **[Inputs](/guides/build-iapp/inputs)** - Handle data inputs
173-
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs
174-
in TEE
175-
- **[How to Get and Decrypt Results](/guides/build-iapp/outputs)** -
176-
Retrieve results
173+
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs in TEE
174+
- **[How to Get and Decrypt Results](/guides/build-iapp/outputs)** - Retrieve
175+
results

src/guides/build-iapp/inputs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ save_report(report)
481481

482482
Continue building with these guides:
483483

484-
- **[Outputs](/guides/build-iapp/outputs)** - Learn how to generate and structure
485-
your iApp outputs
484+
- **[Outputs](/guides/build-iapp/outputs)** - Learn how to generate and
485+
structure your iApp outputs
486486
- **[App Access Control and Pricing](/guides/build-iapp/manage-access)** -
487487
Control who can use your iApp
488488
- **[Debugging Your iApp](/guides/build-iapp/debugging)** - Troubleshoot

src/guides/build-iapp/outputs.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ description:
77

88
# 📤 Outputs
99

10-
**Your iApp must generate outputs that users can retrieve and decrypt.** Understanding
11-
how to structure your outputs, create the required metadata, and follow best
12-
practices is essential for building effective privacy-preserving applications.
10+
**Your iApp must generate outputs that users can retrieve and decrypt.**
11+
Understanding how to structure your outputs, create the required metadata, and
12+
follow best practices is essential for building effective privacy-preserving
13+
applications.
1314

1415
This guide covers how to generate outputs from your iApp and ensure they can be
1516
properly retrieved by users.
@@ -138,8 +139,8 @@ with open(f"{iexec_out}/computed.json", 'w') as f:
138139

139140
Continue building with these guides:
140141

141-
- **[Inputs](/guides/build-iapp/inputs)** - Learn about the different input types
142-
available to your iApp
142+
- **[Inputs](/guides/build-iapp/inputs)** - Learn about the different input
143+
types available to your iApp
143144
- **[App Access Control and Pricing](/guides/build-iapp/manage-access)** -
144145
Control who can use your iApp
145146
- **[Debugging Your iApp](/guides/build-iapp/debugging)** - Troubleshoot

src/guides/manage-data/handle-schemas-dataset-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ don't match, you'll get runtime errors when processing the data.
253253
:::
254254

255255
**Ready to build an iApp?** Check out our detailed
256-
[Inputs guide](/guides/build-iapp/inputs) to learn how
257-
to access schema fields inside your iApp using the deserializer.
256+
[Inputs guide](/guides/build-iapp/inputs) to learn how to access schema fields
257+
inside your iApp using the deserializer.
258258

259259
## Next Steps
260260

src/protocol/ai.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ docker run --rm hello-pytorch
170170
- **[Build Intel TDX App](/guides/build-iapp/advanced/build-your-first-tdx-iapp)** -
171171
TDX applications for AI workloads
172172
- **[Inputs](/guides/build-iapp/inputs)** - Handle data inputs
173-
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs
174-
flow in TEE environment
173+
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs flow in TEE
174+
environment
175175

176176
### Explore Examples
177177

src/references/iapp-generator.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ Start here to understand what iApp are and how they work:
4141
Once you've built your first iApp, level up with these practical guides:
4242

4343
- **[Inputs](/guides/build-iapp/inputs)** - Handle data inputs
44-
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs
45-
flow in TEE environment
44+
- **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs flow in TEE
45+
environment
4646
- **[Debugging Your iApp](/guides/build-iapp/debugging)** - Troubleshoot
4747
execution issues
4848
- **[App Access Control and Pricing](/guides/build-iapp/manage-access)** -
4949
Control who can use your iApp
50-
- **[How to Get and Decrypt Results](/guides/build-iapp/outputs)** -
51-
Retrieve and use outputs
50+
- **[How to Get and Decrypt Results](/guides/build-iapp/outputs)** - Retrieve
51+
and use outputs
5252

5353
### 3. **Explore Advanced Features**
5454

@@ -91,10 +91,9 @@ applications:
9191
1. **[Getting Started](/references/iapp-generator/getting-started)** - Build
9292
your first iApp (15 minutes)
9393
2. **[Inputs](/guides/build-iapp/inputs)** - Handle data inputs
94-
3. **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs
95-
properly
96-
3. **[Debugging](/guides/build-iapp/debugging)** - Fix issues quickly
97-
4. **[App Access Control](/guides/build-iapp/manage-access)** - Go to production
94+
3. **[Outputs](/guides/build-iapp/outputs)** - Handle data outputs properly
95+
4. **[Debugging](/guides/build-iapp/debugging)** - Fix issues quickly
96+
5. **[App Access Control](/guides/build-iapp/manage-access)** - Go to production
9897
:::
9998

10099
### Need Help?

0 commit comments

Comments
 (0)