Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/err #395

Open
wants to merge 2 commits into
base: integration
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arbitrator/brotli/src/dicts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ struct ForceSync<T>(T);
unsafe impl<T> Sync for ForceSync<T> {}

lazy_static! {
/// Memoizes dictionary preperation.
/// Memoizes dictionary preparation.
static ref STYLUS_PROGRAM_DICT: ForceSync<*const EncoderPreparedDictionary> =
ForceSync(unsafe {
let data = Dictionary::StylusProgram.slice().unwrap();
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ pub fn set_response(
thread.set_response(id, result, raw_data, gas)
}

/// sends previos response
/// sends previous response
/// MUST be called right after set_response to the same id
/// returns request_id for the next request
pub fn send_response(mut env: WasmEnvMut, req_id: u32) -> Result<u32, Escape> {
Expand Down