Skip to content

Commit fa152f4

Browse files
committed
fix(doc): use DefaultSet in doctest
1 parent 667ae6f commit fa152f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/src/parse/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ where
136136
///
137137
/// ```no_run
138138
/// # use cambridge_asm::make_io;
139-
/// # use cambridge_asm::parse::{ErrorMap, Extended, jit};
139+
/// # use cambridge_asm::parse::{ErrorMap, DefaultSet, jit};
140140
///
141141
/// # fn foo(s: String) -> Result<(), ErrorMap> {
142-
/// let exec = jit::<Extended>(s, make_io!())?;
142+
/// let exec = jit::<DefaultSet>(s, make_io!())?;
143143
/// # Ok(())
144144
/// # }
145145
/// ```
@@ -178,10 +178,10 @@ where
178178
///
179179
/// ```no_run
180180
/// # use cambridge_asm::make_io;
181-
/// # use cambridge_asm::parse::{ErrorMap, Extended, jit_from_file};
181+
/// # use cambridge_asm::parse::{ErrorMap, DefaultSet, jit_from_file};
182182
///
183183
/// # fn foo(path: String) -> Result<(), ErrorMap> {
184-
/// let exec = jit_from_file::<Extended>(path, make_io!())?;
184+
/// let exec = jit_from_file::<DefaultSet>(path, make_io!())?;
185185
/// # Ok(())
186186
/// # }
187187
/// ```

0 commit comments

Comments
 (0)