Browse Source

added semicolons to export and imports

patch-criadoperez4
Jonathon Hammond 3 years ago
parent
commit
32a21c0eed
  1. 4
      src/pages/en/references/bns-contract.md
  2. 4
      src/pages/en/references/glossary.md
  3. 4
      src/pages/en/references/language-functions.md
  4. 4
      src/pages/en/references/language-keywords.md
  5. 4
      src/pages/en/references/language-overview.md
  6. 4
      src/pages/en/references/stacking-contract.md

4
src/pages/en/references/bns-contract.md

@ -3,8 +3,8 @@ title: BNS Contract
description: See a detailed list of all functions and error codes of the BNS contract. description: See a detailed list of all functions and error codes of the BNS contract.
--- ---
export { convertBNSRefToMdx as getStaticProps } from '@common/data/bns-ref' export { convertBNSRefToMdx as getStaticProps } from '@common/data/bns-ref';
import { BNSErrorcodeReference, BNSFunctionReference } from '@components/bns-ref' import { BNSErrorcodeReference, BNSFunctionReference } from '@components/bns-ref';
## Introduction ## Introduction

4
src/pages/en/references/glossary.md

@ -3,7 +3,7 @@ title: Glossary
description: A comprehensive list of terms used within the ecosystem. description: A comprehensive list of terms used within the ecosystem.
--- ---
export { convertGlossaryToJson as getStaticProps } from '@common/data/glossary' export { convertGlossaryToJson as getStaticProps } from '@common/data/glossary';
import { Glossary } from '@components/glossary' import { Glossary } from '@components/glossary';
<Glossary data={props.glossary} /> <Glossary data={props.glossary} />

4
src/pages/en/references/language-functions.md

@ -3,8 +3,8 @@ title: Functions
description: See a detailed list of all functions for the Clarity language. description: See a detailed list of all functions for the Clarity language.
--- ---
export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref' export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref';
import { ClarityFunctionReference } from '@components/clarity-ref' import { ClarityFunctionReference } from '@components/clarity-ref';
## Function reference ## Function reference

4
src/pages/en/references/language-keywords.md

@ -3,8 +3,8 @@ title: Keywords
description: See a detailed list of all keywords for the Clarity language. description: See a detailed list of all keywords for the Clarity language.
--- ---
export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref' export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref';
import { ClarityKeywordReference } from '@components/clarity-ref' import { ClarityKeywordReference } from '@components/clarity-ref';
## Keyword reference ## Keyword reference

4
src/pages/en/references/language-overview.md

@ -6,8 +6,8 @@ images:
sm: /images/pages/write-smart-contracts-sm.svg sm: /images/pages/write-smart-contracts-sm.svg
--- ---
export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref' export { convertClarityRefToMdx as getStaticProps } from '@common/data/clarity-ref';
import { ClarityKeywordReference, ClarityFunctionReference } from '@components/clarity-ref' import { ClarityKeywordReference, ClarityFunctionReference } from '@components/clarity-ref';
## Clarity Type System ## Clarity Type System

4
src/pages/en/references/stacking-contract.md

@ -3,8 +3,8 @@ title: Stacking Contract
description: See a detailed list of all functions and error codes of the Stacking contract. description: See a detailed list of all functions and error codes of the Stacking contract.
--- ---
export { convertStackingRefToMdx as getStaticProps } from '@common/data/stacking-ref' export { convertStackingRefToMdx as getStaticProps } from '@common/data/stacking-ref';
import { StackingErrorcodeReference, StackingFunctionReference } from '@components/stacking-ref' import { StackingErrorcodeReference, StackingFunctionReference } from '@components/stacking-ref';
## Introduction ## Introduction

Loading…
Cancel
Save