Skip to content

Commit

Permalink
Merge pull request #497 from yellowsquid/patch-1
Browse files Browse the repository at this point in the history
Fix typo in Implied Bounds book chapter
  • Loading branch information
jackh726 authored Jun 7, 2020
2 parents 80c0abd + edc9774 commit c1ec2d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/clauses/implied_bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ forall<T> { Implemented(T: B) :- FromEnv(T: B). }
forall<T> { FromEnv(T: A) :- FromEnv(T: B). }
forall<T> { Implemented(T: C) :- FromEnv(T: C). }
forall<T> { FromEnv(T: C) :- FromEnv(T: C). }
forall<T> { FromEnv(T: B) :- FromEnv(T: C). }
```
So these clauses are defined globally (that is, they are available from
everywhere in the program) but they cannot be used because the hypothesis
Expand Down

0 comments on commit c1ec2d3

Please sign in to comment.