aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bdb8067..442c8ac 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Matrix::Client
-A perl 6 library for [Matrix](https://matrix.org).
+A [Raku](https://raku.org) library for [Matrix](https://matrix.org).
## Synopsis
@@ -20,7 +20,7 @@ A perl 6 library for [Matrix](https://matrix.org).
# Send a message to a random room that I'm in
my $room = $client.joined-rooms.pick;
say "Sending a message to {$room.name}";
- $room.send("Hello from perl6!");
+ $room.send("Hello from Raku!");
## Description