]> git.proxmox.com Git - rustc.git/blobdiff - src/librustdoc/error.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / librustdoc / error.rs
index 8eadbf63f33d91e02cf683b857676049a1e4b90c..6ed7eab1abae6ae3097b36979d8454b859d91938 100644 (file)
@@ -5,9 +5,9 @@ use std::path::{Path, PathBuf};
 use crate::docfs::PathError;
 
 #[derive(Debug)]
-crate struct Error {
-    crate file: PathBuf,
-    crate error: String,
+pub(crate) struct Error {
+    pub(crate) file: PathBuf,
+    pub(crate) error: String,
 }
 
 impl error::Error for Error {}