Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs improvement #742

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ The low-level API is as follows:
- `solc.lowlevel.compileCallback`: this supports callbacks, introduced in 0.2.1
- `solc.lowlevel.compileStandard`: this works just like `compile` above, but is only present in compilers after (and including) 0.4.11

For examples how to use them, please refer to the README of the above mentioned solc-js releases.
For examples of how to use them, please refer to the README of the above-mentioned solc-js releases.

**Note**: These low-level functions remain available for compatibility reasons.
However, they were superseded by the `compile()` function and are no longer required.
Expand Down
2 changes: 1 addition & 1 deletion bindings/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function bindReset (solJson) {
*
* @param solJson The Emscripten compiled Solidity object.
* @param alloc The memory allocation function.
* @param str The source string being copied to a C string.
* @param str The source string is being copied to a C string.
* @param ptr The pointer location where the C string will be set.
*/
function unboundCopyToCString (solJson, alloc, str, ptr) {
Expand Down
4 changes: 2 additions & 2 deletions common/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* A mapping between libraries and the addresses to which they were deployed.
*
* Containing support for two level configuration, These two level
* Containing support for two-level configuration, this two-level
* configurations can be seen below.
*
* {
Expand All @@ -16,7 +16,7 @@ export interface LibraryAddresses {

/**
* A mapping between libraries and lists of placeholder instances present in their hex-encoded bytecode.
* For each placeholder its length and the position of the first character is stored.
* For each placeholder its length and the position of the first character are stored.
*
* Each start and length entry will always directly refer to the position in
* binary and not hex-encoded bytecode.
Expand Down
2 changes: 1 addition & 1 deletion test/smtchecker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ tape('SMTChecker', function (t) {

tape('SMTCheckerWithSolver', function (t) {
// In these tests we require z3 to actually run the solver.
// This uses the SMT double run mechanism instead of the callback.
// This uses the SMT double-run mechanism instead of the callback.

t.test('Simple test with axuiliaryInputRequested', function (st) {
const z3 = smtsolver.availableSolvers.filter(solver => solver.command === 'z3');
Expand Down