Skip to content

Commit

Permalink
Prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
fatso83 committed Oct 3, 2023
1 parent bfc39fe commit f3cb812
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/CONTRIBUTING.md
Expand Up @@ -9,6 +9,7 @@ When you're contributing documentation changes for code in `main` branch, then d
If you're contributing documentation for an existing release, then your documentation changes should go into the documentation for that release in `_releases/` folder, and possibly several of the following releases also.

### Where are all the _releases_?

All the files that used to be under `_releases` in the `main` can be found in the `releases` branch. The `main` branch now only keeps the latest version. That means, to fix the docs of published releases you need to checkout the _relases branch_ and supply a PR against that.

## Running the documentation site locally
Expand Down
4 changes: 2 additions & 2 deletions docs/_howto/typescript-swc.md
Expand Up @@ -183,8 +183,8 @@ If we can just flip the `configurable` flag to `true` during transpilation, Sino
A getter _is_ different from a value, so you need to change your testcode slightly to replace the getter:

```js
const stub = sandbox.fake.returns("mocked")
sandbox.replaceGetter(Other, "toBeMocked", () => stub)
const stub = sandbox.fake.returns("mocked");
sandbox.replaceGetter(Other, "toBeMocked", () => stub);
```

## Use pure dependency injection
Expand Down
1 change: 1 addition & 0 deletions docs/releases.md
Expand Up @@ -18,6 +18,7 @@ redirect_from:

<h2>Changelog</h2>
You can see the full log of changes for each release on our separate <a href="./changelog">changelog page</a>.

</div>

{% include docs/migration-guides.md %}
Expand Down

0 comments on commit f3cb812

Please sign in to comment.