@@ -127,7 +127,7 @@ impl<T> AuthenticatedAsset<T> {
127
127
/// Destroys this [`AuthenticatedAsset`].
128
128
/// # Notes
129
129
/// This function doesn't delete the asset right away, but instead creates a [`Transaction`] that
130
- /// can be executed in order to destory the asset.
130
+ /// can be executed in order to destroy the asset.
131
131
/// # Failures
132
132
/// * Returns an [`Error::InvalidConfig`] if this asset cannot be deleted.
133
133
pub fn delete ( self ) -> Result < DeleteAssetTx < T > , Error > {
@@ -203,7 +203,7 @@ impl<T> AuthenticatedAssetBuilder<T> {
203
203
204
204
/// Sets whether the new asset allows the transfer of its ownership.
205
205
///
206
- /// By default an [`AuthenticatedAsset`] **cannot** be transfered .
206
+ /// By default an [`AuthenticatedAsset`] **cannot** be transferred .
207
207
pub fn transferable ( mut self , transferable : bool ) -> Self {
208
208
self . transferable = transferable;
209
209
self
@@ -233,7 +233,7 @@ impl<T> AuthenticatedAssetBuilder<T> {
233
233
/// owner and a `RecipientCap` to the specified `recipient` address.
234
234
/// `recipient` can accept the transfer by presenting its `RecipientCap` (this prevents other users from claiming the
235
235
/// asset for themselves).
236
- /// The current owner can cancel the proposal at any time - given the transfer hasn't been conclued yet - by presenting
236
+ /// The current owner can cancel the proposal at any time - given the transfer hasn't been concluded yet - by presenting
237
237
/// its `SenderCap`.
238
238
#[ derive( Debug , Clone , Serialize , Deserialize ) ]
239
239
pub struct TransferProposal {
0 commit comments