Skip to content
Open
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/learn/tutorials/dex/pair/mint.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ The `default` keyword needs to have the attribute `min_specialization` added in

### 5. Implement Event

in the contracts *./cotnracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event:
in the contracts *./contracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event:
```rust
...
#[ink(event)]
Expand Down
2 changes: 1 addition & 1 deletion docs/learn/tutorials/dex/pair/swap.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ pub enum PairError {

## 3. Implement Event

In the contracts *./cotnracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event:
In the contracts *./contracts/pair/lib.rs* file, add the Event struct and override the implementation of emit event:
```rust
...
#[ink(event)]
Expand Down