Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Apr 18, 2023
1 parent 7409ca3 commit 1d5725a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.6.2

- Fixed typo in error message

## 0.6.1

- Added check of whether provided files exist
Expand Down
2 changes: 1 addition & 1 deletion src/docfd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ let run
Params.max_word_search_range := max_word_search_range;
List.iter (fun file ->
if not (Sys.file_exists file) then (
Fmt.pr "Error: file \"%s\" does not exist\n" file;
Fmt.pr "Error: File \"%s\" does not exist\n" file;
exit 1
)
)
Expand Down
2 changes: 1 addition & 1 deletion src/version_string.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let s = "0.6.1"
let s = "0.6.2"

0 comments on commit 1d5725a

Please sign in to comment.