From 0b63e6896ea745dee1bd87e25514a3296aa87633 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 2 Nov 2020 00:11:12 +0000 Subject: [PATCH] Fix the license header to avoid collision with the docs --- bootstrap/src/ast.rs | 2 +- bootstrap/src/builtins.rs | 2 +- bootstrap/src/builtins/def.rs | 2 +- bootstrap/src/compiler.rs | 2 +- bootstrap/src/core.rs | 2 +- bootstrap/src/errors.rs | 2 +- bootstrap/src/main.rs | 2 +- bootstrap/src/namespace.rs | 2 +- bootstrap/src/reader.rs | 2 +- bootstrap/src/repl.rs | 2 +- bootstrap/src/runtime.rs | 2 +- bootstrap/src/scope.rs | 2 +- bootstrap/src/types.rs | 2 +- bootstrap/src/types/collections.rs | 2 +- bootstrap/src/types/collections/core.rs | 2 +- bootstrap/src/types/collections/list.rs | 2 +- bootstrap/src/types/number.rs | 2 +- bootstrap/src/types/symbol.rs | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/bootstrap/src/ast.rs b/bootstrap/src/ast.rs index a7df436..80cbf5e 100644 --- a/bootstrap/src/ast.rs +++ b/bootstrap/src/ast.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/builtins.rs b/bootstrap/src/builtins.rs index e3a58a8..7f2c405 100644 --- a/bootstrap/src/builtins.rs +++ b/bootstrap/src/builtins.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/builtins/def.rs b/bootstrap/src/builtins/def.rs index 017b925..9779285 100644 --- a/bootstrap/src/builtins/def.rs +++ b/bootstrap/src/builtins/def.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/compiler.rs b/bootstrap/src/compiler.rs index e7944b4..6a65d21 100644 --- a/bootstrap/src/compiler.rs +++ b/bootstrap/src/compiler.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/core.rs b/bootstrap/src/core.rs index 8012bda..40f87b8 100644 --- a/bootstrap/src/core.rs +++ b/bootstrap/src/core.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/errors.rs b/bootstrap/src/errors.rs index 7031c06..dbea7ca 100644 --- a/bootstrap/src/errors.rs +++ b/bootstrap/src/errors.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/main.rs b/bootstrap/src/main.rs index d27058a..71fe767 100644 --- a/bootstrap/src/main.rs +++ b/bootstrap/src/main.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/namespace.rs b/bootstrap/src/namespace.rs index 3bfd487..66d4216 100644 --- a/bootstrap/src/namespace.rs +++ b/bootstrap/src/namespace.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/reader.rs b/bootstrap/src/reader.rs index 3f20494..5490da0 100644 --- a/bootstrap/src/reader.rs +++ b/bootstrap/src/reader.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/repl.rs b/bootstrap/src/repl.rs index 9b447b1..da7af7c 100644 --- a/bootstrap/src/repl.rs +++ b/bootstrap/src/repl.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/runtime.rs b/bootstrap/src/runtime.rs index 0577819..0e58cf6 100644 --- a/bootstrap/src/runtime.rs +++ b/bootstrap/src/runtime.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/scope.rs b/bootstrap/src/scope.rs index 4c2cc4e..e2d2733 100644 --- a/bootstrap/src/scope.rs +++ b/bootstrap/src/scope.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types.rs b/bootstrap/src/types.rs index 54114e3..eddf705 100644 --- a/bootstrap/src/types.rs +++ b/bootstrap/src/types.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types/collections.rs b/bootstrap/src/types/collections.rs index d7fcc88..9e96289 100644 --- a/bootstrap/src/types/collections.rs +++ b/bootstrap/src/types/collections.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types/collections/core.rs b/bootstrap/src/types/collections/core.rs index f95afd8..fa6ee4c 100644 --- a/bootstrap/src/types/collections/core.rs +++ b/bootstrap/src/types/collections/core.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types/collections/list.rs b/bootstrap/src/types/collections/list.rs index a33c0a8..49a8acd 100644 --- a/bootstrap/src/types/collections/list.rs +++ b/bootstrap/src/types/collections/list.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types/number.rs b/bootstrap/src/types/number.rs index 4371caa..ea39357 100644 --- a/bootstrap/src/types/number.rs +++ b/bootstrap/src/types/number.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani * diff --git a/bootstrap/src/types/symbol.rs b/bootstrap/src/types/symbol.rs index ed1b080..b004e3f 100644 --- a/bootstrap/src/types/symbol.rs +++ b/bootstrap/src/types/symbol.rs @@ -1,4 +1,4 @@ -/** Serene --- Yet an other Lisp +/* Serene --- Yet an other Lisp * * Copyright (c) 2020 Sameer Rahmani *