From b6d4562e6ae9cbf9864c3f35c361db8087e595e7 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Sun, 14 Dec 2025 17:34:34 -0500 Subject: [PATCH] [DOC] Remove copyright from Set class docs --- set.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/set.c b/set.c index 0c657cf66d..6d200b5dfa 100644 --- a/set.c +++ b/set.c @@ -1988,13 +1988,6 @@ rb_set_size(VALUE set) /* * Document-class: Set * - * Copyright (c) 2002-2024 Akinori MUSHA - * - * Documentation by Akinori MUSHA and Gavin Sinclair. - * - * All rights reserved. You can redistribute and/or modify it under the same - * terms as Ruby. - * * The Set class implements a collection of unordered values with no * duplicates. It is a hybrid of Array's intuitive inter-operation * facilities and Hash's fast lookup.