diff options
author | Aylur <[email protected]> | 2025-02-27 14:58:40 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2025-02-27 15:04:40 +0100 |
commit | 98a488d0efe520533316b0df32386d9b40c2ef17 (patch) | |
tree | 4decb9c8be264c69901e504132c1039d29666f13 /lib/astal/io/cli.vala | |
parent | b7f10b99bc810e7ad6a949d6670cb440d33045a0 (diff) |
rename: message -> request
the same thing was called either message or request
now its only referred to as a request
Diffstat (limited to 'lib/astal/io/cli.vala')
-rw-r--r-- | lib/astal/io/cli.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/astal/io/cli.vala b/lib/astal/io/cli.vala index 9e47b53..23abd14 100644 --- a/lib/astal/io/cli.vala +++ b/lib/astal/io/cli.vala @@ -38,7 +38,7 @@ int main(string[] argv) { if (help) { print("Client for Astal.Application instances\n\n"); print("Usage:\n"); - print(" %s [flags] message\n\n", argv[0]); + print(" %s [flags] requet\n\n", argv[0]); print("Flags:\n"); print(" -h, --help Print this help and exit\n"); print(" -v, --version Print version number and exit\n"); @@ -92,7 +92,7 @@ int main(string[] argv) { } try { - var reply = AstalIO.send_message(instance_name, request); + var reply = AstalIO.send_request(instance_name, request); print("%s\n", reply); } catch (IOError.NOT_FOUND e) { return err(@"there is no \"$instance_name\" instance runnning\n"); |