summaryrefslogtreecommitdiff
path: root/capi
diff options
context:
space:
mode:
authorRazrFalcon <razrfalcon@gmail.com>2019-01-02 18:39:33 +0200
committerRazrFalcon <razrfalcon@gmail.com>2019-01-02 18:39:33 +0200
commitb76cc7a2bdf5961f5892d290c1668b2ac231e25b (patch)
treea81e7181a914a00704eb2f01f45f4f43c329aee5 /capi
parent1dd8efcb2f0c9d6214fbeb0fead2fb20b676138b (diff)
Warnings refactoring.
Diffstat (limited to 'capi')
-rw-r--r--capi/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/capi/src/lib.rs b/capi/src/lib.rs
index 16a903f..617d127 100644
--- a/capi/src/lib.rs
+++ b/capi/src/lib.rs
@@ -354,7 +354,7 @@ pub extern fn resvg_qt_render_to_canvas_by_id(
};
if id.is_empty() {
- warn!("Node with an empty ID can not be painted.");
+ warn!("Node with an empty ID cannot be painted.");
return;
}
@@ -394,7 +394,7 @@ pub extern fn resvg_cairo_render_to_canvas_by_id(
};
if id.is_empty() {
- warn!("Node with an empty ID can not be painted.");
+ warn!("Node with an empty ID cannot be painted.");
return;
}
@@ -543,7 +543,7 @@ fn get_node_bbox(
}
}
None => {
- warn!("No node with '{}' ID in the tree.", id);
+ warn!("No node with '{}' ID is in the tree.", id);
false
}
}