aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/context.mli
diff options
context:
space:
mode:
authorGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-26 13:18:02 +0200
committerGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-26 13:18:02 +0200
commit69388fcd52b4a2aeefe843099c608d96defd1ce6 (patch)
treef31e4768b8db651eac5be33997c19417106e5bf9 /kernel/context.mli
parent6cdcd498c4b425cad077f5bfaa453dc605b325a2 (diff)
CLEANUP: rename "Context.Named.{to,of}_rel" functions to "Context.Named.{to,of}_rel_decl"
Diffstat (limited to 'kernel/context.mli')
-rw-r--r--kernel/context.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/context.mli b/kernel/context.mli
index 366f0ffc1..091d701a2 100644
--- a/kernel/context.mli
+++ b/kernel/context.mli
@@ -199,11 +199,11 @@ sig
(** Convert [Rel.Declaration.t] value to the corresponding [Named.Declaration.t] value.
The function provided as the first parameter determines how to translate "names" to "ids". *)
- val of_rel : (Name.t -> Id.t) -> Rel.Declaration.t -> t
+ val of_rel_decl : (Name.t -> Id.t) -> Rel.Declaration.t -> t
(** Convert [Named.Declaration.t] value to the corresponding [Rel.Declaration.t] value. *)
(* TODO: Move this function to [Rel.Declaration] module and rename it to [of_named]. *)
- val to_rel : t -> Rel.Declaration.t
+ val to_rel_decl : t -> Rel.Declaration.t
end
(** Rel-context is represented as a list of declarations.