diff options
author | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:11 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:11 -0300 |
commit | e50b8fa9e02b19ece80ebeb576051e451d3a7812 (patch) | |
tree | 037db346e5deacfe21fe0bbae1b496331e3c117e /README.md | |
parent | e39257df2688137d57d88d502f7198425d5dfcd5 (diff) | |
download | perl6-matrix-client-e50b8fa9e02b19ece80ebeb576051e451d3a7812.tar.gz |
Rename some things to from perl6 to raku
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |