diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index abafd0ad3810..2f048fe3c104 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -73,7 +73,7 @@ Docker ====== Docker images of Solidity builds are available using the ``solc`` image from the ``ethereum`` organization. -Use the ``stable`` tag for the latest released version, and ``nightly`` for potentially unstable changes in the develop branch. +Use the ``stable`` tag for the latest released version, and ``nightly`` for potentially unstable changes in the ``develop`` branch. The Docker image runs the compiler executable so that you can pass all compiler arguments to it. For example, the command below pulls the stable version of the ``solc`` image (if you do not have it already), diff --git a/docs/path-resolution.rst b/docs/path-resolution.rst index 666d9b8dc9ca..ff4930bc9ded 100644 --- a/docs/path-resolution.rst +++ b/docs/path-resolution.rst @@ -41,7 +41,7 @@ that interprets a source unit name as a path in the local filesystem. This callback can be disabled using the ``--no-import-callback`` command-line option. The `JavaScript interface `_ does not provide any by default, but one can be provided by the user. -This mechanism can be used to obtain source code from locations other then the local filesystem +This mechanism can be used to obtain source code from locations other than the local filesystem (which may not even be accessible, e.g. when the compiler is running in a browser). For example the `Remix IDE `_ provides a versatile callback that lets you `import files from HTTP, IPFS and Swarm URLs or refer directly to packages in NPM registry