Skip to content

Commit ff867f0

Browse files
committed
fix: Make Recoverable field public.
1 parent 911d8b0 commit ff867f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/recoverable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ impl<C> From<ParserConfig<C>> for RecoveryConfig {
235235
/// Panics:
236236
/// If [`ParseRecoverable`] implementation doesn't save any diagnostic message,
237237
/// and return [`None`].
238-
pub struct Recoverable<T>(T);
238+
pub struct Recoverable<T>(pub T);
239239
impl<T> Recoverable<T> {
240240
pub fn inner(self) -> T {
241241
self.0

0 commit comments

Comments
 (0)