Skip to content

Commit b930c6d

Browse files
committed
more reverts
1 parent e75b008 commit b930c6d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/src/content/docs/book/cells.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ struct TwoCell {
159159
160160
struct TwoBuilder {
161161
bRef: Builder; // ^builder in TL-B
162-
bRem: Builder as remaining; // cell in TL-B
162+
bRem: Builder as remaining; // builder in TL-B
163163
}
164164
165165
struct TwoSlice {
166166
sRef: Slice; // ^slice in TL-B
167-
sRem: Slice as remaining; // cell in TL-B
167+
sRem: Slice as remaining; // slice in TL-B
168168
}
169169
170170
contract SerializationExample {

docs/src/content/docs/zh-cn/book/cells.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ contract SerializationExample {
159159
sRef: Slice; // ^slice in TL-B
160160
161161
// With `remaining`
162-
cRem: Cell as remaining; // cell in TL-B
163-
bRem: Builder as remaining; // cell in TL-B
164-
sRem: Slice as remaining; // cell in TL-B
162+
cRem: Cell as remaining; // remainder<cell> in TL-B
163+
bRem: Builder as remaining; // remainder<builder> in TL-B
164+
sRem: Slice as remaining; // remainder<slice> in TL-B
165165
166166
// Constructor function,
167167
// necessary for this example contract to compile
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`benchmarks benchmark functions: code size 1`] = `211`;
3+
exports[`benchmarks benchmark functions: code size 1`] = `227`;
44

5-
exports[`benchmarks benchmark functions: gas used 1`] = `2769n`;
5+
exports[`benchmarks benchmark functions: gas used 1`] = `2869n`;
66

7-
exports[`benchmarks benchmark readFwdFee: code size 1`] = `157`;
7+
exports[`benchmarks benchmark readFwdFee: code size 1`] = `173`;
88

9-
exports[`benchmarks benchmark readFwdFee: gas used 1`] = `2799n`;
9+
exports[`benchmarks benchmark readFwdFee: gas used 1`] = `2899n`;

0 commit comments

Comments
 (0)