nixos/manual: Fix reference to send_key

This commit is contained in:
Olli Helenius 2020-08-03 13:16:24 +03:00 committed by GitHub
parent 588940d405
commit 446669cb5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -216,12 +216,12 @@ start_all()
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term> <term>
<methodname>send_keys</methodname> <methodname>send_key</methodname>
</term> </term>
<listitem> <listitem>
<para> <para>
Simulate pressing keys on the virtual keyboard, e.g., Simulate pressing keys on the virtual keyboard, e.g.,
<literal>send_keys("ctrl-alt-delete")</literal>. <literal>send_key("ctrl-alt-delete")</literal>.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -232,7 +232,7 @@ start_all()
<listitem> <listitem>
<para> <para>
Simulate typing a sequence of characters on the virtual keyboard, e.g., Simulate typing a sequence of characters on the virtual keyboard, e.g.,
<literal>send_keys("foobar\n")</literal> will type the string <literal>send_chars("foobar\n")</literal> will type the string
<literal>foobar</literal> followed by the Enter key. <literal>foobar</literal> followed by the Enter key.
</para> </para>
</listitem> </listitem>