docs: fix markdown link syntax and typo (#13453)

This commit is contained in:
mk0walsk
2025-12-08 19:03:11 +02:00
committed by GitHub
parent c72dad93a4
commit a2e7f608e5
2 changed files with 2 additions and 2 deletions

View File

@@ -240,7 +240,7 @@ func (b *Blockstore) unlockMove(state bsMoveState) {
// a symlink from the current path to the new path; the old blockstore is deleted.
//
// The blockstore MUST accept new writes during the move and ensure that these
// are persisted to the new blockstore; if a failure occurs aboring the move,
// are persisted to the new blockstore; if a failure occurs aborting the move,
// then they must be persisted to the old blockstore.
// In short, the blockstore must not lose data from new writes during the move.
func (b *Blockstore) movingGC(ctx context.Context) error {

View File

@@ -48,7 +48,7 @@ cd build/actors/
./pack.sh v15 v15.0.0-rc1
```
This will fetch the CAR files from the [GitHub release page for `v15.0.0-rc1`](https://github.com/filecoin-project/builtin-actors/releases/tag/v15.0.0-rc1) and create a replacement for `build/actors/v15.tar.zst` and generate an update to [`builtin_actors_gen.go`](../../build/builtin_actors_gen.go). If v15 is the correct actors version for the current network version (as per [`upgrades.go`]((../../chain/consensus/filcns/upgrades.go)), then running itests, by default, will use your new bundle.
This will fetch the CAR files from the [GitHub release page for `v15.0.0-rc1`](https://github.com/filecoin-project/builtin-actors/releases/tag/v15.0.0-rc1) and create a replacement for `build/actors/v15.tar.zst` and generate an update to [`builtin_actors_gen.go`](../../build/builtin_actors_gen.go). If v15 is the correct actors version for the current network version (as per [`upgrades.go`](../../chain/consensus/filcns/upgrades.go)), then running itests, by default, will use your new bundle.
**If you want to bundle a custom build of builtin-actors from your local filesystem**: