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 typos #1860

Merged
Merged

Conversation

atrieu
Copy link
Contributor

@atrieu atrieu commented Apr 12, 2024

Before,

field_parameters_prefixed =
fun (M_pos : positive) (a24 : F M_pos) (prefix : string) =>
{|
 (* ... *)
  select_znz := prefix ++ "felem_copy";
  felem_copy := prefix ++ "small_literal";
  from_word := prefix ++ "select_znz"
|}
     : forall M_pos : positive, F M_pos -> string -> FieldParameters

After,

field_parameters_prefixed =
fun (M_pos : positive) (a24 : F M_pos) (prefix : string) =>
{|
 (* ... *)
  select_znz := prefix ++ "select_znz";
  felem_copy := prefix ++ "felem_copy";
  from_word := prefix ++ "from_word"
|}
     : forall M_pos : positive, F M_pos -> string -> FieldParameters

@andres-erbsen andres-erbsen enabled auto-merge (squash) April 12, 2024 18:43
@andres-erbsen andres-erbsen merged commit 3d91646 into mit-plv:master Apr 12, 2024
39 checks passed
atrieu added a commit to atrieu/fiat-crypto that referenced this pull request Apr 19, 2024
Co-authored-by: Alix Trieu <alix@trieu.dev>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants