Skip to content

Commit d121396

Browse files
committed
mdBook generated from gitorial
1 parent e8756f3 commit d121396

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/1/source/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In this step, we will initialize a basic rust project, where we can start buildi
3838
If we look at what has been generated, in that folder, you will see the following:
3939

4040
- [src/main.rs](src/main.rs) - This is the entry point to your program. We will be building everything for this project in the `src` folder.
41-
- [Cargo.toml](Cargo.toml) - This is a configuration file for your Rust project. Quite similar to a `package.json` that you would see in a Node.JS project. We will modify this in the future when we import crates to use in our project, but We can leave this alone for now.
41+
- [Cargo.toml](Cargo.toml) - This is a configuration file for your Rust project. Quite similar to a `package.json` that you would see in a Node.js project. We will modify this in the future when we import crates to use in our project, but We can leave this alone for now.
4242
- [Cargo.lock](Cargo.lock) - This is an autogenerated lock file based on your `cargo.toml` and the compilation. This usually defines the very specific versions of each crate being imported, and should not be manually edited.
4343
- `target/*` - You might also see a target folder if you did `cargo run`. This is a folder where all the build artifacts are placed during compilation. We do not commit this folder into our git history.
4444

src/16/solution/solution.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ index 51aea28f..543111e7 100644
5757
let caller_balance = self.balance(&caller);
5858
let to_balance = self.balance(&to);
5959
diff --git a/src/system.rs b/src/system.rs
60-
index a4740a6b..b63ab24e 100644
60+
index 4116a13f..b63ab24e 100644
6161
--- a/src/system.rs
6262
+++ b/src/system.rs
6363
@@ -1,22 +1,17 @@
6464
use std::collections::BTreeMap;
6565

6666
-/*
6767
- TODO: Define the common types used in this pallet:
68-
- - `AccountID`
68+
- - `AccountId`
6969
- - `BlockNumber`
7070
- - `Nonce`
7171
-

src/16/template/src/system.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::BTreeMap;
22

33
/*
44
TODO: Define the common types used in this pallet:
5-
- `AccountID`
5+
- `AccountId`
66
- `BlockNumber`
77
- `Nonce`
88

src/16/template/template.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ index e09906cb..51aea28f 100644
1717
/// It is a simple module which keeps track of how much balance each account has in this state
1818
/// machine.
1919
diff --git a/src/system.rs b/src/system.rs
20-
index 2fc5d764..a4740a6b 100644
20+
index 2fc5d764..4116a13f 100644
2121
--- a/src/system.rs
2222
+++ b/src/system.rs
2323
@@ -1,5 +1,14 @@
2424
use std::collections::BTreeMap;
2525

2626
+/*
2727
+ TODO: Define the common types used in this pallet:
28-
+ - `AccountID`
28+
+ - `AccountId`
2929
+ - `BlockNumber`
3030
+ - `Nonce`
3131
+

0 commit comments

Comments
 (0)