Skip to content

Commit

Permalink
fix kind_nlist typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nikswamy committed Oct 21, 2024
1 parent 86b6048 commit 54ed7bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/3d/prelude/EverParse3d.Kinds.fst
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ let kind_nlist #b #w kelt nopt
| None -> kind_nlist_default
| Some byte_size ->
if Some kelt.parser_kind_low = kelt.parser_kind_high
&& byte_size <> 0
&& kelt.parser_kind_low % byte_size = 0
&& kelt.parser_kind_low <> 0
&& byte_size % kelt.parser_kind_low = 0
&& kelt.parser_kind_subkind = Some ParserStrong
&& kelt.parser_kind_metadata = Some ParserKindMetadataTotal
then (
Expand Down

0 comments on commit 54ed7bb

Please sign in to comment.