From 0945b005c736e956eafa4c4688601fd15fed4e36 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 19 Jun 2020 14:50:04 +0200 Subject: Fix terminology --- libbutl/builtin.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libbutl') diff --git a/libbutl/builtin.cxx b/libbutl/builtin.cxx index 940e5a0..c6083b6 100644 --- a/libbutl/builtin.cxx +++ b/libbutl/builtin.cxx @@ -1287,7 +1287,7 @@ namespace butl // rename() function) this is a noop. // if (exists && to == from) - fail () << "unable to move entity '" << from << "' to itself"; + fail () << "unable to move entry '" << from << "' to itself"; // Rename/move the filesystem entry, replacing an existing one. // @@ -1300,7 +1300,7 @@ namespace butl } catch (const system_error& e) { - fail () << "unable to move entity '" << from << "' to '" << to + fail () << "unable to move entry '" << from << "' to '" << to << "': " << e; } }; @@ -1321,7 +1321,7 @@ namespace butl fail () << "multiple source paths without trailing separator for " << "destination directory"; - // Synopsis 1: move an entity to the specified path. + // Synopsis 1: move an entry to the specified path. // mv (src, dst); } -- cgit v1.1