Skip to content

Commit

Permalink
Merge pull request #3080 from MoshiulRabbi/patch-1
Browse files Browse the repository at this point in the history
fixed some typo
  • Loading branch information
ryestew committed May 26, 2022
2 parents 0dbbd82 + 5f82e18 commit 2d526bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Please change the compiler version in Solidity Plugin to the newer one or use an

**Q:** How to verify a contract that imports other contracts?

**A:** The verification tool does not recursively go through the import statments in a contract. So can only verify a 'flattened' contract.
**A:** The verification tool does not recursively go through the import statements in a contract. So can only verify a 'flattened' contract.

There is a plugin called `Flattener` which will stuff all the original code and the imported code into a single file.

Expand Down
4 changes: 2 additions & 2 deletions docs/static_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ a + b;
```
- **String Length: Bytes length != String length**

Bytes and string length are not the same since strings are assumed to be UTF-8 encoded (according to the ABI defintion) therefore one character is not nessesarily encoded in one byte of data.
Bytes and string length are not the same since strings are assumed to be UTF-8 encoded (according to the ABI definition) therefore one character is not necessarily encoded in one byte of data.

_Example:_
```
Expand Down Expand Up @@ -310,4 +310,4 @@ Remix-analyzer
-----------------
`remix-analyzer` is the library which works underneath of remix-ide `Solidity Static Analysis` plugin.

`remix-analyzer` is an [NPM package](https://www.npmjs.com/package/@remix-project/remix-analyzer). It can be used as a library in a solution supporting node.js. Find more information about this type of usage in the [remix-analyzer repository](https://github.com/ethereum/remix-project/tree/master/libs/remix-analyzer#how-to-use)
`remix-analyzer` is an [NPM package](https://www.npmjs.com/package/@remix-project/remix-analyzer). It can be used as a library in a solution supporting node.js. Find more information about this type of usage in the [remix-analyzer repository](https://github.com/ethereum/remix-project/tree/master/libs/remix-analyzer#how-to-use)

0 comments on commit 2d526bb

Please sign in to comment.