Skip to content

Commit 99c738b

Browse files
committed
Run prettier
1 parent fd39779 commit 99c738b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/src/content/ignition/docs/guides/upgradeable-proxies.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const upgradeModule = buildModule("UpgradeModule", (m) => {
206206

207207
This module begins the same way as `ProxyModule`, by getting the account that owns the `ProxyAdmin` contract. We'll use this in a moment to upgrade the proxy.
208208

209-
Next, we use the `m.useModule(...)` method to get the `ProxyAdmin` and proxy contracts from the previous module.
209+
Next, we use the `m.useModule(...)` method to get the `ProxyAdmin` and proxy contracts from the previous module.
210210

211211
Then, we deploy our `DemoV2` contract. This will be the contract that we'll upgrade our proxy to.
212212

@@ -219,7 +219,6 @@ Lastly, we again return the `ProxyAdmin` and proxy contracts so that we can use
219219
Finally, in the same file, we'll create our module called `DemoV2Module`:
220220

221221
```js
222-
223222
const demoV2Module = buildModule("DemoV2Module", (m) => {
224223
const { proxy } = m.useModule(upgradeModule);
225224

@@ -281,7 +280,7 @@ describe("Demo Proxy", function () {
281280
expect(await demo.connect(otherAccount).version()).to.equal("1.0.0");
282281
});
283282
});
284-
283+
285284
describe("Upgrading", function () {
286285
it("Should have upgraded the proxy to DemoV2", async function () {
287286
const [owner, otherAccount] = await ethers.getSigners();

0 commit comments

Comments
 (0)