aboutsummaryrefslogtreecommitdiffstats
path: root/lib/edoc/src/edoc_doclet.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2013-02-20 09:27:40 +0100
committerHans Bolinder <[email protected]>2013-02-20 09:27:40 +0100
commit7b8c2514f765d0769902ec828b7aedd075210ca9 (patch)
tree9bb10186e23fdb8ff988d162ac5bd31ab3baebe6 /lib/edoc/src/edoc_doclet.erl
parentebc66af659af6f33847e1603c5f2257d5379eaf4 (diff)
parentd36e25df20fe0bf7490bae57de17fc882b10a25c (diff)
downloadotp-7b8c2514f765d0769902ec828b7aedd075210ca9.tar.gz
otp-7b8c2514f765d0769902ec828b7aedd075210ca9.tar.bz2
otp-7b8c2514f765d0769902ec828b7aedd075210ca9.zip
Merge branch 'hb/stdlib/unicode_corrections/OTP-10820'
* hb/stdlib/unicode_corrections/OTP-10820: Use ~ts for filenames
Diffstat (limited to 'lib/edoc/src/edoc_doclet.erl')
-rw-r--r--lib/edoc/src/edoc_doclet.erl6
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