File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -2930,12 +2930,11 @@ __*return*__ | [Group](sdk-src_wasm.md) | *The record nonce.*
2930
2930
2931
2931

2932
2932
2933
- Clone the record ciphertext .
2933
+ Clone the RecordCiphertext WASM object .
2934
2934
2935
2935
Parameters | Type | Description
2936
2936
--- | --- | ---
2937
- __*return*__ | [RecordCiphertext](sdk-src_wasm.md) | *A clone of the record ciphertext.
2938
- Clone the field element.*
2937
+ __*return*__ | [RecordCiphertext](sdk-src_wasm.md) | *A clone of the RecordCiphertext WASM object.*
2939
2938
2940
2939
---
2941
2940
@@ -3177,12 +3176,11 @@ __*return*__ | [Group](sdk-src_wasm.md) | *record view key*
3177
3176
3178
3177

3179
3178
3180
- Clone the record plaintext .
3179
+ Clone the RecordPlaintext WASM object .
3181
3180
3182
3181
Parameters | Type | Description
3183
3182
--- | --- | ---
3184
- __*return*__ | [RecordPlaintext](sdk-src_wasm.md) | *A clone of the record plaintext.
3185
- Clone the field element.*
3183
+ __*return*__ | [RecordPlaintext](sdk-src_wasm.md) | *A clone of the RecordPlaintext WASM object.*
3186
3184
3187
3185
---
3188
3186
Original file line number Diff line number Diff line change @@ -157,10 +157,9 @@ impl RecordCiphertext {
157
157
Group :: from ( self . 0 . nonce ( ) )
158
158
}
159
159
160
- /// Clone the record ciphertext .
160
+ /// Clone the RecordCiphertext WASM object .
161
161
///
162
- /// @returns {RecordCiphertext} A clone of the record ciphertext.
163
- /// Clone the field element.
162
+ /// @returns {RecordCiphertext} A clone of the RecordCiphertext WASM object.
164
163
#[ allow( clippy:: should_implement_trait) ]
165
164
pub fn clone ( & self ) -> RecordCiphertext {
166
165
RecordCiphertext ( self . 0 . clone ( ) )
Original file line number Diff line number Diff line change @@ -266,10 +266,9 @@ impl RecordPlaintext {
266
266
Group :: from_string ( & self . nonce ( ) ) . unwrap ( ) . scalar_multiply ( & view_key. to_scalar ( ) ) . to_x_coordinate ( )
267
267
}
268
268
269
- /// Clone the record plaintext .
269
+ /// Clone the RecordPlaintext WASM object .
270
270
///
271
- /// @returns {RecordPlaintext} A clone of the record plaintext.
272
- /// Clone the field element.
271
+ /// @returns {RecordPlaintext} A clone of the RecordPlaintext WASM object.
273
272
#[ allow( clippy:: should_implement_trait) ]
274
273
pub fn clone ( & self ) -> RecordPlaintext {
275
274
RecordPlaintext ( self . 0 . clone ( ) )
You can’t perform that action at this time.
0 commit comments