From cc3872d82a3dc387f6ac967154df72a9a319512e Mon Sep 17 00:00:00 2001 From: smol-ninja Date: Fri, 5 Jul 2024 16:49:43 +0100 Subject: [PATCH] style: lint code --- docs/apps/guides/02-url-schemes.mdx | 1 + docs/contracts/v2/guides/04-create-airstream.mdx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/apps/guides/02-url-schemes.mdx b/docs/apps/guides/02-url-schemes.mdx index 854e6fcb..6cdb3f98 100644 --- a/docs/apps/guides/02-url-schemes.mdx +++ b/docs/apps/guides/02-url-schemes.mdx @@ -53,6 +53,7 @@ level. For situations when an alias cannot be used, we fallback to the following [subgraph documentation](/api/subgraphs/protocol/structure#identifying). --- + ## Search Streams ### Elements diff --git a/docs/contracts/v2/guides/04-create-airstream.mdx b/docs/contracts/v2/guides/04-create-airstream.mdx index d6dfff21..3b9dcee9 100644 --- a/docs/contracts/v2/guides/04-create-airstream.mdx +++ b/docs/contracts/v2/guides/04-create-airstream.mdx @@ -187,7 +187,7 @@ after user A, then the stream for user B will end 2 days after the stream for us ### Aggregate Amount This is the total amount of assets you want to airdrop to your users, denoted in units of the asset's decimals. Let say -you want to airdrop 100M tokens of DAI. Then, the aggregate amount would be $100M*10^{18}$. +you want to airdrop 100M tokens of DAI. Then, the aggregate amount would be 100M\*10^18. ```solidity uint256 aggregateAmount = 100000000e18;