diff options
author | Hans Bolinder <[email protected]> | 2013-02-19 14:21:28 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-02-19 14:31:52 +0100 |
commit | d36e25df20fe0bf7490bae57de17fc882b10a25c (patch) | |
tree | 4a65c850b48de2e5b7d5406a616d2b22be941699 /lib/edoc/src/edoc_doclet.erl | |
parent | e6613acf5a29c882d4673c6a8371e03523f9590c (diff) | |
download | otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.tar.gz otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.tar.bz2 otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.zip |
Use ~ts for filenames
Diffstat (limited to 'lib/edoc/src/edoc_doclet.erl')
-rw-r--r-- | lib/edoc/src/edoc_doclet.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/edoc/src/edoc_doclet.erl b/lib/edoc/src/edoc_doclet.erl index a0c1ae1c0f..ce1e94a26a 100644 --- a/lib/edoc/src/edoc_doclet.erl +++ b/lib/edoc/src/edoc_doclet.erl @@ -200,7 +200,7 @@ source({M, P, Name, Path}, Dir, Suffix, Env, Set, Private, Hidden, {Set, Error} end; R -> - report("skipping source file '~s': ~W.", [File, R, 15]), + report("skipping source file '~ts': ~W.", [File, R, 15]), {Set, true} end. @@ -216,14 +216,14 @@ check_name(M, M0, P0, File) -> ok; _ -> if N =/= N0 -> - warning("file '~s' actually contains module '~s'.", + warning("file '~ts' actually contains module '~s'.", [File, M]); true -> ok end end, if P =/= P0 -> - warning("file '~s' belongs to package '~s', not '~s'.", + warning("file '~ts' belongs to package '~s', not '~s'.", [File, P, P0]); true -> ok |