@@ -1250,7 +1250,7 @@ int emacs_module_init(struct emacs_runtime *ert) {
12501250 // Exported functions
12511251 emacs_value fun ;
12521252 fun =
1253- env -> make_function (env , 4 , 6 , Fvterm_new , "Allocates a new vterm." , NULL );
1253+ env -> make_function (env , 4 , 6 , Fvterm_new , "Allocate a new vterm." , NULL );
12541254 bind_function (env , "vterm--new" , fun );
12551255
12561256 fun = env -> make_function (env , 1 , 5 , Fvterm_update ,
@@ -1266,11 +1266,11 @@ int emacs_module_init(struct emacs_runtime *ert) {
12661266 bind_function (env , "vterm--write-input" , fun );
12671267
12681268 fun = env -> make_function (env , 3 , 3 , Fvterm_set_size ,
1269- "Sets the size of the terminal." , NULL );
1269+ "Set the size of the terminal." , NULL );
12701270 bind_function (env , "vterm--set-size" , fun );
12711271
12721272 fun = env -> make_function (env , 2 , 2 , Fvterm_set_pty_name ,
1273- "Sets the name of the pty." , NULL );
1273+ "Set the name of the pty." , NULL );
12741274 bind_function (env , "vterm--set-pty-name" , fun );
12751275 fun = env -> make_function (env , 2 , 2 , Fvterm_get_pwd ,
12761276 "Get the working directory of at line n." , NULL );
@@ -1280,7 +1280,7 @@ int emacs_module_init(struct emacs_runtime *ert) {
12801280 bind_function (env , "vterm--reset-point" , fun );
12811281
12821282 fun = env -> make_function (env , 1 , 1 , Fvterm_get_icrnl ,
1283- "Gets the icrnl state of the pty" , NULL );
1283+ "Get the icrnl state of the pty" , NULL );
12841284 bind_function (env , "vterm--get-icrnl" , fun );
12851285
12861286 provide (env , "vterm-module" );
0 commit comments