From d72988d95e6048fe998c089af2d96d9281dd3fdb Mon Sep 17 00:00:00 2001 From: Sukey <35202440+sukey2008@users.noreply.github.com> Date: Wed, 10 Jan 2024 10:39:25 +0100 Subject: [PATCH] Fix several minor typo (#14629) * fix minor typo * fix minor typo * Change to suggested correct wording Update installing-solidity.rst --- docs/installing-solidity.rst | 2 +- docs/path-resolution.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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