diff options
author | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:44 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:44 -0300 |
commit | e1abad7a57fd34ffb55c1d57d0b89ee91e55296b (patch) | |
tree | 12fe2d7b6d45543cb52f3b0382bc7de4bcc796fc /README.md | |
parent | 2fb9929b3acd2caf6ca0f0cf1e16f0872f7ae667 (diff) | |
parent | e50b8fa9e02b19ece80ebeb576051e451d3a7812 (diff) | |
download | perl6-matrix-client-e1abad7a57fd34ffb55c1d57d0b89ee91e55296b.tar.gz |
Merge branch 'master' into documentation
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 |