Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/compilation_walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ LLVM_InitializeAllAsmParsers();
After that we create a LLVM context, and pass it along the module to the
`mlirTranslateModuleToLLVMIR` method:

```rust ,ignore
```rust,ignore
let llvm_module = mlirTranslateModuleToLLVMIR(mlir_module_op, llvm_context);
```

Expand Down
2 changes: 1 addition & 1 deletion docs/execution_walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Given the following Cairo program:

```rust,ignore
```cairo
// This is the cairo program. It just adds two numbers together and returns the
// result in an enum whose variant is selected using the result's parity.
enum Parity<T> {
Expand Down
4 changes: 2 additions & 2 deletions docs/gas_builtin_accounting.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ amount being withdrawn.
### Example
Let's illustrate this with a simple example using the following Cairo 1 code:

```rust,ignore
```cairo
fn run_test() {
let mut i: u8 = 0;
let mut val = 0;
Expand Down Expand Up @@ -174,7 +174,7 @@ called from within the program.
### Example
Let us consider the following Cairo program which uses the `pedersen` builtin:

```rust,ignore
```cairo
use core::integer::bitwise;
use core::pedersen::pedersen;

Expand Down
Loading
Loading