diff --git a/src/Packages/Marketplace/Runtime/LinkQueryParams.cs b/src/Packages/Marketplace/Runtime/LinkQueryParams.cs
index 04217aa8f..38ed1601f 100644
--- a/src/Packages/Marketplace/Runtime/LinkQueryParams.cs
+++ b/src/Packages/Marketplace/Runtime/LinkQueryParams.cs
@@ -32,12 +32,12 @@ public struct OnRampQueryParams
public struct SwapQueryParams
{
///
- /// The address of the token being swapped from (default is null).
+ /// The address of the token being swapped from (default: null).
///
public string? FromTokenAddress { get; set; }
///
- /// The address of the token being swapped to (default is null).
+ /// The address of the token being swapped to (default: null).
///
public string? ToTokenAddress { get; set; }
}
@@ -48,22 +48,22 @@ public struct SwapQueryParams
public struct BridgeQueryParams
{
///
- /// The ID of the source blockchain (default is null).
+ /// The ID of the source blockchain (default: null).
///
public string? FromChainID { get; set; }
///
- /// The address of the token being moved from (default is null).
+ /// The address of the token being moved from (default: null).
///
public string? FromTokenAddress { get; set; }
///
- /// The ID of the destination blockchain (default is null).
+ /// The ID of the destination blockchain (default: null).
///
public string? ToChainID { get; set; }
///
- /// The address of the token being moved to (default is null).
+ /// The address of the token being moved to (default: null).
///
public string? ToTokenAddress { get; set; }
}