*** empty log message ***
authornipkow
Mon, 13 May 2002 15:45:21 +0200
changeset 13147 491a48cf6023
parent 13146 f43153b63361
child 13148 fe118a977a6d
*** empty log message ***
src/HOL/List.thy
--- a/src/HOL/List.thy	Mon May 13 15:39:56 2002 +0200
+++ b/src/HOL/List.thy	Mon May 13 15:45:21 2002 +0200
@@ -1,7 +1,7 @@
-(*Title:HOL/List.thy
-ID: $Id$
-Author: Tobias Nipkow
-Copyright 1994 TU Muenchen
+(* Title:HOL/List.thy
+   ID: $Id$
+   Author: Tobias Nipkow
+   Copyright 1994 TU Muenchen
 *)
 
 header {* The datatype of finite lists *}
@@ -171,7 +171,7 @@
 "remdups [] = []"
 "remdups (x#xs) = (if x : set xs then remdups xs else x # remdups xs)"
 primrec
-replicate_0: "replicate0x = []"
+replicate_0: "replicate 0 x = []"
 replicate_Suc: "replicate (Suc n) x = x # replicate n x"
 defs
  list_all2_def: