Reduce visibility

This commit is contained in:
Kirill Bulatov 2020-01-15 20:21:05 +02:00
parent d51cf7794d
commit 79b77403b6

View File

@ -166,7 +166,7 @@ pub(crate) struct ActionBuilder {
impl ActionBuilder {
#[allow(dead_code)]
/// Adds a custom label to the action, if it needs to be different from the assist label
pub fn label(&mut self, label: impl Into<String>) {
pub(crate) fn label(&mut self, label: impl Into<String>) {
self.label = Some(label.into())
}