Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ltac2_tutorial.v
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ Ltac2 Eval Message.print (Message.of_constr '(3+4)).
(*+ Reading the Ltac2 source *)

(* You will need to read the Ltac2 source
(https://github.com/coq/coq/tree/master/user-contrib/Ltac2) to figure out how
(https://github.com/rocq-prover/rocq/tree/master/plugins/ltac2) to figure out how
things work. This ranges from fine to totally impossible.

For example, let's figure out the Message API. We open
https://github.com/coq/coq/blob/master/user-contrib/Ltac2/Message.v and look at
https://github.com/rocq-prover/rocq/blob/master/plugins/ltac2/Message.v and look at
what's there. It doesn't have a type [Message.t] but just [message], so find
it's definition - it's defined as [Ltac2 Type message], which means it comes
from OCaml. That's fine, it's opaque anyway.
Expand Down