generated from eigerco/beerus
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!--- Please provide a general summary of your changes in the title above --> ## Pull Request type <!-- Please try to limit your pull request to one type; submit multiple pull requests if needed. --> - [x] Typos ## Does this introduce a breaking change? - [ ] Yes - [x] No
- Loading branch information
Showing
6 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# ASCII | ||
|
||
## Interger | ||
## Integer | ||
|
||
1. Split Intergers into an array of its individual ascii values | ||
1. Split Integers into an array of its individual ascii values | ||
|
||
> 123 -> [49,50,51] | ||
2. Converts Intergers into a string represented as either a single felt252 or if it exceeds 31 chars an array of felt252 | ||
2. Converts Integers into a string represented as either a single felt252 or if it exceeds 31 chars an array of felt252 | ||
|
||
> 123 -> "123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
mod interger; | ||
use interger::{ToAsciiTrait, ToAsciiArrayTrait}; | ||
mod integer; | ||
use integer::{ToAsciiTrait, ToAsciiArrayTrait}; | ||
|
||
#[cfg(test)] | ||
mod tests; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
mod test_ascii_interger; | ||
mod test_ascii_integer; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters