diff --git a/docs/docusaurus/docs/getting-started/inverter/assets/index.md b/docs/docusaurus/docs/getting-started/inverter/assets/index.md
index d2bec48f2..5b6326774 100644
--- a/docs/docusaurus/docs/getting-started/inverter/assets/index.md
+++ b/docs/docusaurus/docs/getting-started/inverter/assets/index.md
@@ -26,13 +26,11 @@ Ensure that you have the [protocol buffer compiler](https://grpc.io/docs/protoc-
### Rust
Ensure that you have a recent version of Rust installed.
-{ isRelease("{{VERSION}}") ?
Add the Substrate registry to your Cargo config:
You only need to do this the first time you set up Substrate.
-
: }
### Project Setup
diff --git a/docs/docusaurus/docs/getting-started/quickstart.md b/docs/docusaurus/docs/getting-started/quickstart.md
index 5f42e04b7..59d83383b 100644
--- a/docs/docusaurus/docs/getting-started/quickstart.md
+++ b/docs/docusaurus/docs/getting-started/quickstart.md
@@ -23,15 +23,12 @@ Ensure that you have version 1.80.0 or beyond.
Also ensure that you have the [protocol buffer compiler](https://grpc.io/docs/protoc-installation/) (`protoc`) installed.
-{ isRelease("{{VERSION}}") ?
-First, add the Substrate registry to your Cargo config:
+Then, add the Substrate registry to your Cargo config:
You only need to do this the first time you set up Substrate.
-
: }
-
Next, create a new Rust project:
```bash
@@ -70,7 +67,7 @@ We now define the schematic of the voltage divider.
We can now write a Rust unit test to write the netlist to a file.
-{vdividerMod}
+{vdividerMod}
To run the test, run
diff --git a/docs/docusaurus/versioned_docs/version-release/getting-started/inverter/assets/index.md b/docs/docusaurus/versioned_docs/version-release/getting-started/inverter/assets/index.md
index d2bec48f2..5b6326774 100644
--- a/docs/docusaurus/versioned_docs/version-release/getting-started/inverter/assets/index.md
+++ b/docs/docusaurus/versioned_docs/version-release/getting-started/inverter/assets/index.md
@@ -26,13 +26,11 @@ Ensure that you have the [protocol buffer compiler](https://grpc.io/docs/protoc-
### Rust
Ensure that you have a recent version of Rust installed.
-{ isRelease("{{VERSION}}") ?
Add the Substrate registry to your Cargo config:
You only need to do this the first time you set up Substrate.
-
: }
### Project Setup
diff --git a/docs/docusaurus/versioned_docs/version-release/getting-started/quickstart.md b/docs/docusaurus/versioned_docs/version-release/getting-started/quickstart.md
index 38fd0a85f..59d83383b 100644
--- a/docs/docusaurus/versioned_docs/version-release/getting-started/quickstart.md
+++ b/docs/docusaurus/versioned_docs/version-release/getting-started/quickstart.md
@@ -67,7 +67,7 @@ We now define the schematic of the voltage divider.
We can now write a Rust unit test to write the netlist to a file.
-{vdividerMod}
+{vdividerMod}
To run the test, run
diff --git a/examples/latest/sky130_inverter/src/tb/cds.rs b/examples/latest/sky130_inverter/src/tb/cds.rs
index c37230627..be1f49ed3 100644
--- a/examples/latest/sky130_inverter/src/tb/cds.rs
+++ b/examples/latest/sky130_inverter/src/tb/cds.rs
@@ -29,8 +29,6 @@ use substrate::types::{Signal, TestbenchIo};
#[allow(dead_code)]
mod schematic_only_tb {
- use sky130::Sky130CdsSchema;
-
use super::*;
// begin-code-snippet schematic-tb
diff --git a/examples/release/sky130_inverter/src/tb/cds.rs b/examples/release/sky130_inverter/src/tb/cds.rs
index c37230627..be1f49ed3 100644
--- a/examples/release/sky130_inverter/src/tb/cds.rs
+++ b/examples/release/sky130_inverter/src/tb/cds.rs
@@ -29,8 +29,6 @@ use substrate::types::{Signal, TestbenchIo};
#[allow(dead_code)]
mod schematic_only_tb {
- use sky130::Sky130CdsSchema;
-
use super::*;
// begin-code-snippet schematic-tb