Skip to content

Commit

Permalink
Injective goPathToCoqPath
Browse files Browse the repository at this point in the history
  • Loading branch information
upamanyus committed Mar 28, 2024
1 parent 7cbaef3 commit 48da455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/glang/coq.go
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ type ImportDecl struct {
func goPathToCoqPath(p string) string {
p = strings.ReplaceAll(p, "_", "__")
p = strings.ReplaceAll(p, ".", "_dot_")
p = strings.ReplaceAll(p, "-", "_")
p = strings.ReplaceAll(p, "-", "_dash_")
return p
}

Expand Down

0 comments on commit 48da455

Please sign in to comment.