Docs: Remove temporal references in Bazel pages
PiperOrigin-RevId: 375106033
diff --git a/site/docs/aquery.html b/site/docs/aquery.html
index c528ca5..48d13a5 100644
--- a/site/docs/aquery.html
+++ b/site/docs/aquery.html
@@ -79,7 +79,7 @@
<h2 id='functions'>Using aquery functions</h2>
-<p>There are currently 3 <code>aquery</code> functions:</p>
+<p>There are three <code>aquery</code> functions:</p>
<ul>
<li><code>inputs</code>: filter actions by inputs.</li>
<li><code>outputs</code>: filter actions by outputs</li>
@@ -170,7 +170,7 @@
<h4><code class='flag'>--skyframe_state, default=false</code></h4>
<p>
- Without performing extra analysis, dump the current Action Graph from Skyframe.
+ Without performing extra analysis, dump the Action Graph from Skyframe.
Note: Specifying a target with <code>--skyframe_state</code> is currently not supported.
This flag is only available with <code>--output=proto</code> or <code>--output=textproto</code>.
</p>
@@ -186,7 +186,7 @@
</p>
<p>
- In some cases, it is useful to query the Action Graph currently on Skyframe.
+ In some cases, it is useful to query the Action Graph on Skyframe.
An example use case would be:
</p>
@@ -223,7 +223,7 @@
<p>
With <code>--skyframe_state</code> mode, <code>aquery</code> takes the content of the Action Graph
- that Skyframe keeps on the current instance of Bazel, (optionally) performs filtering on it and
+ that Skyframe keeps on the instance of Bazel, (optionally) performs filtering on it and
outputs the content, without re-running the analysis phase.
</p>
diff --git a/site/docs/install-os-x.md b/site/docs/install-os-x.md
index 32ec4d2..9ade7ac 100644
--- a/site/docs/install-os-x.md
+++ b/site/docs/install-os-x.md
@@ -58,7 +58,7 @@
[Bazel releases page on GitHub](https://github.com/bazelbuild/bazel/releases).
Note: **on macOS Catalina**, due to Apple's new app notarization requirements,
-you will need to download the installer from the terminal using `curl`:
+you need to download the installer from the terminal using `curl`:
```shell
# Example installing version `3.2.0`. Replace the version below as appropriate.
@@ -83,7 +83,7 @@
additional installation options.
If you are **on macOS Catalina** and get an error that _**“bazel-real” cannot be
-opened because the developer cannot be verified**_, you will need to re-download
+opened because the developer cannot be verified**_, you need to re-download
the installer from the terminal using `curl` as a workaround; see Step 2 above.
### Step 4: Set up your environment
diff --git a/site/docs/install-ubuntu.md b/site/docs/install-ubuntu.md
index 61c3f8b..299caa9 100644
--- a/site/docs/install-ubuntu.md
+++ b/site/docs/install-ubuntu.md
@@ -48,10 +48,7 @@
```
The component name "jdk1.8" is kept only for legacy reasons and doesn't relate
-to supported or included JDK versions. In the past, when Bazel did not
-yet bundle a private JRE, there were two release versions, one compatible with
-JDK 7 and one with JDK 8. However, since Java 7 support stopped and
-bundling a private runtime started, Bazel releases are Java version agnostic.
+to supported or included JDK versions. Bazel releases are Java-version agnostic.
Changing the "jdk1.8" component name would break existing users of the repo.
### Step 2: Install and update Bazel
@@ -66,18 +63,18 @@
sudo apt update && sudo apt full-upgrade
```
-The `bazel` package will always install the latest stable version of Bazel. You
-can install specific, older versions of Bazel in addition to the latest one like
-this:
+The `bazel` package always installs the latest stable version of Bazel. You
+can install specific, older versions of Bazel in addition to the latest one,
+such as this:
```bash
sudo apt install bazel-1.0.0
```
-This will install Bazel 1.0.0 as `/usr/bin/bazel-1.0.0` on your system. This
-can be useful if you need a specific version of Bazel to build a project, e.g.
-because it uses a `.bazelversion` file to explicitly state with which Bazel
-version it should be built.
+This installs Bazel 1.0.0 as `/usr/bin/bazel-1.0.0` on your system. This
+can be useful if you need a specific version of Bazel to build a project, for
+example because it uses a `.bazelversion` file to explicitly state with which
+Bazel version it should be built.
Optionally, you can set `bazel` to a specific version by creating a symlink: