Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "Beta" Label from formatter documentation #10144

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/ruff_python_formatter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For details, see [Black compatibility](#black-compatibility).

## Getting started

The Ruff formatter is available in Beta as of Ruff v0.1.2.
The Ruff formatter is available since Ruff v0.1.2.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer "as of" personally.


### CLI

Expand Down
3 changes: 1 addition & 2 deletions docs/formatter.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
The Ruff formatter is an extremely fast Python code formatter designed as a drop-in replacement for
[Black](https://pypi.org/project/black/), available as part of the `ruff` CLI via `ruff format`.

The Ruff formatter is available as a [production-ready Beta](https://astral.sh/blog/the-ruff-formatter)
as of Ruff v0.1.2.
The Ruff formatter is available since Ruff [v0.1.2](https://astral.sh/blog/the-ruff-formatter).

## `ruff format`

Expand Down
2 changes: 1 addition & 1 deletion playground/src/Editor/SecondarySideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function SecondarySideBar({
return (
<SideBar position="right">
<SideBarEntry
title="Format (beta)"
title="Format"
position={"right"}
selected={selected === SecondaryTool.Format}
onClick={() => onSelected(SecondaryTool.Format)}
Expand Down
Loading