Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed May 17, 2024
1 parent c01f512 commit c7042b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/langs/explicit-substitution/exp/Exp.cic
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ datatype Exp {
}

class Binding {
name: string
name: String
exp: Exp
}
2 changes: 1 addition & 1 deletion docs/langs/explicit-substitution/reduce/lookup.cic
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Binding, Exp } from "../exp/index.cic"

export function lookup(
name: string,
name: String,
bindings: List(Binding),
): Maybe(Exp) {
let found = listFind(
Expand Down

0 comments on commit c7042b3

Please sign in to comment.