about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland Fredenhagen <dev@modprog.de>2023-01-12 09:54:48 +0100
committerGitHub <noreply@github.com>2023-01-12 09:54:48 +0100
commit03bc46f96ba5c0bdf352cf32660d8760172dd010 (patch)
tree4dbd641d491a1ad20d8baaf309a9ee98a50a6068
parent6f201cfc56783beacb98c9e9033ddd58567c4517 (diff)
downloadrust-03bc46f96ba5c0bdf352cf32660d8760172dd010.tar.gz
rust-03bc46f96ba5c0bdf352cf32660d8760172dd010.zip
Convert pub to pub(crate)
-rw-r--r--crates/ide-assists/src/handlers/convert_comment_block.rs4
-rw-r--r--crates/ide-assists/src/handlers/raw_string.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/ide-assists/src/handlers/convert_comment_block.rs b/crates/ide-assists/src/handlers/convert_comment_block.rs
index 282820b1672..1acd5ee9728 100644
--- a/crates/ide-assists/src/handlers/convert_comment_block.rs
+++ b/crates/ide-assists/src/handlers/convert_comment_block.rs
@@ -107,7 +107,7 @@ fn line_to_block(acc: &mut Assists, comment: ast::Comment) -> Option<()> {
 /// The line -> block assist can  be invoked from anywhere within a sequence of line comments.
 /// relevant_line_comments crawls backwards and forwards finding the complete sequence of comments that will
 /// be joined.
-pub fn relevant_line_comments(comment: &ast::Comment) -> Vec<Comment> {
+pub(crate) fn relevant_line_comments(comment: &ast::Comment) -> Vec<Comment> {
     // The prefix identifies the kind of comment we're dealing with
     let prefix = comment.prefix();
     let same_prefix = |c: &ast::Comment| c.prefix() == prefix;
@@ -159,7 +159,7 @@ pub fn relevant_line_comments(comment: &ast::Comment) -> Vec<Comment> {
 //              */
 //
 // But since such comments aren't idiomatic we're okay with this.
-pub fn line_comment_text(indentation: IndentLevel, comm: ast::Comment) -> String {
+pub(crate) fn line_comment_text(indentation: IndentLevel, comm: ast::Comment) -> String {
     let contents_without_prefix = comm.text().strip_prefix(comm.prefix()).unwrap();
     let contents = contents_without_prefix.strip_prefix(' ').unwrap_or(contents_without_prefix);
 
diff --git a/crates/ide-assists/src/handlers/raw_string.rs b/crates/ide-assists/src/handlers/raw_string.rs
index eff5a1f21f2..b1b3bab7e51 100644
--- a/crates/ide-assists/src/handlers/raw_string.rs
+++ b/crates/ide-assists/src/handlers/raw_string.rs
@@ -155,7 +155,7 @@ pub(crate) fn remove_hash(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<
     })
 }
 
-pub fn required_hashes(s: &str) -> usize {
+pub(crate) fn required_hashes(s: &str) -> usize {
     let mut res = 0usize;
     for idx in s.match_indices('"').map(|(i, _)| i) {
         let (_, sub) = s.split_at(idx + 1);