From 4418c08a5bfb017f822adf4481e89d8d422c5092 Mon Sep 17 00:00:00 2001 From: Zach Shipko Date: Mon, 1 Feb 2021 17:59:15 -0800 Subject: [PATCH] Use proper Lwt file headers --- src/core/lwt_seq.ml | 16 ++-------------- src/core/lwt_seq.mli | 16 ++-------------- test/core/test_lwt_seq.ml | 2 ++ 3 files changed, 6 insertions(+), 28 deletions(-) diff --git a/src/core/lwt_seq.ml b/src/core/lwt_seq.ml index 132902a97..13d0e40af 100644 --- a/src/core/lwt_seq.ml +++ b/src/core/lwt_seq.ml @@ -1,17 +1,5 @@ -(**************************************************************************) -(* *) -(* OCaml *) -(* *) -(* Simon Cruanes *) -(* *) -(* Copyright 2017 Institut National de Recherche en Informatique et *) -(* en Automatique. *) -(* *) -(* All rights reserved. This file is distributed under the terms of *) -(* the GNU Lesser General Public License version 2.1, with the *) -(* special exception on linking described in the file LICENSE. *) -(* *) -(**************************************************************************) +(* This file is part of Lwt, released under the MIT license. See LICENSE.md for + details, or visit https://github.com/ocsigen/lwt/blob/master/LICENSE.md. *) diff --git a/src/core/lwt_seq.mli b/src/core/lwt_seq.mli index f31cdae40..9745e0171 100644 --- a/src/core/lwt_seq.mli +++ b/src/core/lwt_seq.mli @@ -1,17 +1,5 @@ -(**************************************************************************) -(* *) -(* OCaml *) -(* *) -(* Simon Cruanes *) -(* *) -(* Copyright 2017 Institut National de Recherche en Informatique et *) -(* en Automatique. *) -(* *) -(* All rights reserved. This file is distributed under the terms of *) -(* the GNU Lesser General Public License version 2.1, with the *) -(* special exception on linking described in the file LICENSE. *) -(* *) -(**************************************************************************) +(* This file is part of Lwt, released under the MIT license. See LICENSE.md for + details, or visit https://github.com/ocsigen/lwt/blob/master/LICENSE.md. *) diff --git a/test/core/test_lwt_seq.ml b/test/core/test_lwt_seq.ml index 775057a14..303d7c1a4 100644 --- a/test/core/test_lwt_seq.ml +++ b/test/core/test_lwt_seq.ml @@ -1,6 +1,8 @@ (* This file is part of Lwt, released under the MIT license. See LICENSE.md for details, or visit https://github.com/ocsigen/lwt/blob/master/LICENSE.md. *) + + open Lwt.Syntax open Test