Skip to content

Commit

Permalink
Fix Context debug format
Browse files Browse the repository at this point in the history
  • Loading branch information
HalidOdat committed Mar 21, 2023
1 parent 9831732 commit 8c26701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa_engine/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl std::fmt::Debug for Context<'_> {
.field("strict", &self.strict)
.field("promise_job_queue", &"JobQueue")
.field("hooks", &"HostHooks")
.field("optimize", &self.optimizer_options);
.field("optimizer_options", &self.optimizer_options);

#[cfg(feature = "intl")]
debug.field("icu", &self.icu);
Expand Down

0 comments on commit 8c26701

Please sign in to comment.