Skip to content

Commit

Permalink
Fix broken links from .mdx to .md
Browse files Browse the repository at this point in the history
  • Loading branch information
briandoyle81 committed Oct 21, 2024
1 parent ece1a8c commit 3853a7f
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Examples:

## Go SDK

[Flow Go SDK](./flow-go-sdk/index.mdx) provides a set of packages for Go developers to build applications that interact with the Flow network.
[Flow Go SDK](./flow-go-sdk/index.md) provides a set of packages for Go developers to build applications that interact with the Flow network.

## JavaScript (FCL)

Expand All @@ -119,7 +119,7 @@ Examples:
```


```markdown index.mdx
```markdown index.md
---
sidebar_position: 1
title: Tools
Expand Down
2 changes: 1 addition & 1 deletion docs/build/basics/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,6 @@ There are multiple SDKs implementing the above APIs for different languages:

**Javascript SDK** [tools/clients/fcl-js](../../tools/clients/fcl-js/index.md)

**Go SDK** [tools/clients/flow-go-sdk](../../tools/clients/flow-go-sdk/index.mdx)
**Go SDK** [tools/clients/flow-go-sdk](../../tools/clients/flow-go-sdk/index.md)

Find a list of all SDKs here: [tools/clients](../../tools/clients/index.md)
2 changes: 1 addition & 1 deletion docs/build/basics/blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ There are multiple SDKs implementing the above APIs for different languages:

[**Javascript SDK**](../../tools/clients/fcl-js/index.md)

[**Go SDK**](../../tools/clients/flow-go-sdk/index.mdx)
[**Go SDK**](../../tools/clients/flow-go-sdk/index.md)

Find a list of all SDKs [here](../../tools/clients/index.md)
2 changes: 1 addition & 1 deletion docs/build/basics/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ There are multiple SDKs implementing the above APIs for different languages:

[**Javascript SDK**](../../tools/clients/fcl-js/index.md)

[**Go SDK**](../../tools/clients/flow-go-sdk/index.mdx)
[**Go SDK**](../../tools/clients/flow-go-sdk/index.md)

Find a list of all SDKs [here](../../tools/clients/index.md)
2 changes: 1 addition & 1 deletion docs/build/basics/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ There are multiple SDKs implementing the above APIs for different languages:

[**Javascript SDK**](../../tools/clients/fcl-js/index.md)

[**Go SDK**](../../tools/clients/flow-go-sdk/index.mdx)
[**Go SDK**](../../tools/clients/flow-go-sdk/index.md)

Find a list of all SDKs [here](../../tools/clients/index.md)

Expand Down
2 changes: 1 addition & 1 deletion docs/build/basics/transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,6 @@ There are multiple SDKs implementing the above APIs for different languages:

[**Javascript SDK**](../../tools/clients/fcl-js/index.md)

[**Go SDK**](../../tools/clients/flow-go-sdk/index.mdx)
[**Go SDK**](../../tools/clients/flow-go-sdk/index.md)

Find a list of all SDKs [here](../../tools/clients/index.md)
2 changes: 1 addition & 1 deletion docs/build/smart-contracts/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To build confidently, you will want to set up the appropriate local environment
- [Flow CLI](../../tools/flow-cli/index.md): A utility to directly interact with the chain and manage accounts and contracts.
- [Flow Emulator](../../tools/emulator/index.md): A lightweight server that simulates the Flow blockchain (strongly recommended during development).
- [Flow Dev Wallet](https://github.com/onflow/fcl-dev-wallet/): A utility to simulate user wallets in development.
- [Visual Studio Code Extension](../../tools/vscode-extension/index.mdx): An IDE integration for developing smart contracts.
- [Visual Studio Code Extension](../../tools/vscode-extension/index.md): An IDE integration for developing smart contracts.
- [JS Testing Framework](https://github.com/onflow/flow-js-testing): A framework to test your smart contracts.

## Storing Data on Flow
Expand Down
4 changes: 2 additions & 2 deletions docs/networks/staking/08-staking-rewards.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Events Block #51753836:
- amount (UFix64): 17.31047712
```

Example using [Flow Go SDK](../../tools/clients/flow-go-sdk/index.mdx)
Example using [Flow Go SDK](../../tools/clients/flow-go-sdk/index.md)
```
package main
Expand Down Expand Up @@ -196,7 +196,7 @@ Events:
<clipped for brevity>
```

Example using [Flow Go SDK](../../tools/clients/flow-go-sdk/index.mdx)
Example using [Flow Go SDK](../../tools/clients/flow-go-sdk/index.md)
```
package main
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/clients/fcl-js/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ _Pass in the following as a single object with the following keys. All keys are
| ---------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `cadence` | string **(required)** | A valid cadence transaction. |
| `args` | [ArgumentFunction](#argumentfunction) | Any arguments to the script if needed should be supplied via a function that returns an array of arguments. |
| `limit` | number | Compute (Gas) limit for query. Read the [documentation about computation cost](../flow-go-sdk/index.mdx#gas-limit) for information about how computation cost is calculated on Flow. |
| `limit` | number | Compute (Gas) limit for query. Read the [documentation about computation cost](../flow-go-sdk/index.md#gas-limit) for information about how computation cost is calculated on Flow. |
| `proposer` | [AuthorizationFunction](#authorization-function) | The authorization function that returns a valid [AuthorizationObject](#authorizationobject) for the [proposer role](#TransactionRolesObject). |
#### Returns
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/clients/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Go SDK

[Flow Go SDK](./flow-go-sdk/index.mdx) provides a set of packages for Go developers to build applications that interact with the Flow network.
[Flow Go SDK](./flow-go-sdk/index.md) provides a set of packages for Go developers to build applications that interact with the Flow network.

## Python SDK

Expand Down

0 comments on commit 3853a7f

Please sign in to comment.