Skip to content

Commit e05fc36

Browse files
committed
Fix release notes.
1 parent 663e2f6 commit e05fc36

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Please see the [project releases](https://socketry.github.io/decode/releases/ind
2424

2525
### v0.24.0
2626

27-
- [Introduce support for RBS signature generation.](https://socketry.github.io/decode/releases/index#introduce-support-for-rbs-signature-generation.)
27+
- [Introduce support for RBS signature generation](https://socketry.github.io/decode/releases/index#introduce-support-for-rbs-signature-generation)
2828

2929
### v0.23.5
3030

releases.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22

33
## v0.24.0
44

5-
### Introduce support for RBS signature generation.
5+
### Introduce support for RBS signature generation
66

77
Decode now supports generating RBS type signatures from Ruby source code, making it easier to add type annotations to existing Ruby projects. The RBS generator analyzes your Ruby code and documentation to produce type signatures that can be used with tools like Steep, TypeProf, and other RBS-compatible type checkers.
88

99
To generate RBS signatures for your Ruby code, use the provided bake task:
1010

1111
``` bash
12-
# Generate RBS signatures for the current directory
13-
bundle exec bake decode:rbs:generate .
12+
-- Generate RBS signatures for the current directory
13+
$ bundle exec bake decode:rbs:generate .
1414

15-
# Generate RBS signatures for a specific directory
16-
bundle exec bake decode:rbs:generate lib/
15+
-- Generate RBS signatures for a specific directory
16+
$bundle exec bake decode:rbs:generate lib/
1717
```
1818

1919
The generator will output RBS declarations to stdout, which you can redirect to a file:
2020

2121
``` bash
22-
# Save RBS signatures to a file
23-
bundle exec bake decode:rbs:generate lib/ > sig/generated.rbs
22+
-- Save RBS signatures to a file
23+
$ bundle exec bake decode:rbs:generate lib/ > sig/generated.rbs
2424
```
2525

2626
The RBS generator produces type signatures for:

0 commit comments

Comments
 (0)