Skip to content

Commit 6d0a36a

Browse files
committed
update an error message
1 parent 3166e28 commit 6d0a36a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/texdoclib-cli.tlu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ local function do_action(action)
168168
texdoc.util.print_zsh_completion()
169169
os.exit(C.exit_ok)
170170
else
171-
err_print('error', arg[1] .. ' is not supported currently!')
171+
err_print('error', arg[1] .. ' is currently not supported.')
172172
os.exit(C.exit_error)
173173
end
174174
end

spec/action/print_completion_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
it 'should result in the "missing shell operand" error' do
2929
expect(last_command_started).to have_exit_status(1)
30-
expect(stderr).to include(error_line "unrealistic-sh is not supported currently!")
30+
expect(stderr).to include(error_line "unrealistic-sh is currently not supported.")
3131
end
3232
end
3333

0 commit comments

Comments
 (0)