Skip to content

Commit 56fd397

Browse files
committed
changes for new release and API
1 parent 75d07fc commit 56fd397

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
This model provides some miscellaneous text processing routines not
66
provided by core Raku. (Note it replaces the now-deprecated `Text::More` module.)
77

8-
Note this is version 2.0.0 which introduces a new API 2 for
9-
the 'strip-comment' routine. See the examples below for its use.
8+
Note this is version `2.0.0` which introduces a new API 2 for
9+
the `strip-comment` routine. See the examples below for its use.
1010
The old signature is still usable, but it is deprecated
11-
and will be removed in version 3.0.0.
11+
and will be removed in version `3.0.0`.
1212

1313
## Synopsis
1414

@@ -20,8 +20,8 @@ may also be exported:
2020

2121
```raku
2222
use Text::More :strip-comment;
23-
# the '#' is the default comment character
24-
my $line = " some text # a comment";
23+
# the '#' is the default comment character
24+
my $line = " some text # a comment";
2525
$line = strip-comment $line;
2626
say $line # output: << some text >>
2727
```
@@ -57,10 +57,6 @@ $line = strip-comment $line
5757
say $line # output: <<text 1 >>
5858
```
5959

60-
61-
62-
63-
6460
## Installation
6561

6662
``` Raku
@@ -82,7 +78,7 @@ p6doc Text::Utils
8278
- `Text::Emotion`
8379
- `Text::Levenshtein::Damerau`
8480
- `Text::MiscUtils`
85-
- `Text::More` (deprecated)
81+
- `Text::More` (deprecated by `Text::Utils`)
8682
- `Text::Table::List`
8783
- `Text::Table::Simple`
8884
- `Text::Tabs`

0 commit comments

Comments
 (0)