Skip to content

Commit

Permalink
add lua&sed to shell and switch to coq 8.11 + fixing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
CohenCyril committed Jun 9, 2020
1 parent 226a0f5 commit b13a3ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.nix
@@ -1,3 +1,3 @@
{
coq = "8.10";
coq = "8.11";
}
4 changes: 3 additions & 1 deletion default.nix
Expand Up @@ -111,5 +111,7 @@ let
in
if pkgs.lib.trivial.inNixShell then pkg.overrideAttrs (old: {
inherit shellHook mathcompnix;
buildInputs = (old.buildInputs or []) ++ pkgs.lib.optional withEmacs emacs;
buildInputs = (old.buildInputs or []) ++
pkgs.lib.optional withEmacs emacs ++
[ pkgs.lua pkgs.sedutil ];
}) else pkg
2 changes: 1 addition & 1 deletion mathcomp/ssreflect/order.v
Expand Up @@ -117,7 +117,7 @@ From mathcomp Require Import path fintype tuple bigop finset div prime.
(* 3. declaring notations for the main operations of this library, by *)
(* setting the first argument of the definition to the display, e.g. *)
(* `Notation my_syndef_le x y := @Order.le my_display _ x y.` or *)
(* `Notation "x <<< y" := @Order.lt my_display _ x y (at level ...).` *)
(* `Notation "x <=< y" := @Order.lt my_display _ x y (at level ...).` *)
(* Non overloaded notations will default to the default display. *)
(* *)
(* One may use displays either for convenience or to disambiguate between *)
Expand Down

0 comments on commit b13a3ab

Please sign in to comment.