Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 42a1b61

Browse files
committed
Fix link to std library and update compiler v2 statement
1 parent 6f5e81d commit 42a1b61

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

apps/nextra/pages/en/build/smart-contracts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ Here is a `hello_blockchain` example of move
7979
- [Pontem Move Playground](https://playground.pontem.network/)
8080
- [Collection of nestable Move resources](https://github.com/taoheorg/taohe)
8181

82-
A new Move compiler and language version is currently in early beta testing. If you are interested to play with it, check [this page](smart-contracts/compiler_v2.mdx).
82+
We have a new Move on Aptos compiler that supports Move 2. See [this page](smart-contracts/compiler_v2.mdx) for more information.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Libraries
22

33
Aptos provides multiple useful libraries for developers. The complete up-to-date
4-
docs can be found [here](../../../network/blockchain/move.mdx).
4+
docs can be found [here](../move-reference.mdx).

packages/aptos-nextra-components/src/utils/mdast/mdast.test.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ test("keyRotation.md parse and fix AST", () => {
77
markdownToMdx(tree);
88
const markdown = astToMarkdown(tree);
99
expect(markdown).toEqual(
10-
astToMarkdown(
11-
readFileAsTree("./examples/keyRotation.expect.md"),
12-
).toString(),
10+
astToMarkdown(readFileAsTree("./examples/keyRotation.expect.md")).toString()
1311
);
1412
});
1513

@@ -20,8 +18,8 @@ test("account_snippet.md parse and fix AST", () => {
2018
const markdown = astToMarkdown(tree);
2119
expect(markdown).toEqual(
2220
astToMarkdown(
23-
readFileAsTree("./examples/account_snippet.expect.md"),
24-
).toString(),
21+
readFileAsTree("./examples/account_snippet.expect.md")
22+
).toString()
2523
);
2624
});
2725

@@ -31,8 +29,8 @@ test("vector_snippet.md parse and fix AST", () => {
3129
const markdown = astToMarkdown(tree);
3230
expect(markdown).toEqual(
3331
astToMarkdown(
34-
readFileAsTree("./examples/vector_snippet.expect.md"),
35-
).toString(),
32+
readFileAsTree("./examples/vector_snippet.expect.md")
33+
).toString()
3634
);
3735
});
3836

0 commit comments

Comments
 (0)