Replaced `div and `mod in consts_code section by div and mod.
authorberghofe
Mon, 16 Aug 2004 12:29:09 +0200
changeset 15129 fbf90acc5bf4
parent 15128 da03f05815b0
child 15130 dc6be28d7f4e
Replaced `div and `mod in consts_code section by div and mod.
src/HOL/Integ/NatBin.thy
--- a/src/HOL/Integ/NatBin.thy	Sat Aug 14 16:27:56 2004 +0200
+++ b/src/HOL/Integ/NatBin.thy	Mon Aug 16 12:29:09 2004 +0200
@@ -839,8 +839,8 @@
   "uminus" :: "int => int"      ("`~")
   "op +" :: "int => int => int" ("(_ `+/ _)")
   "op *" :: "int => int => int" ("(_ `*/ _)")
-  "op div" :: "int => int => int" ("(_ `div/ _)")
-  "op mod" :: "int => int => int" ("(_ `mod/ _)")
+  "op div" :: "int => int => int" ("(_ div/ _)")
+  "op mod" :: "int => int => int" ("(_ mod/ _)")
   "op <" :: "int => int => bool" ("(_ </ _)")
   "op <=" :: "int => int => bool" ("(_ <=/ _)")
   "neg"                         ("(_ < 0)")