From 4e91bae07cc94bab2bb1a5bb12c0922f7e4a93c7 Mon Sep 17 00:00:00 2001 From: Artem Darius Weber Date: Thu, 2 Jan 2025 15:13:41 +0300 Subject: [PATCH] chore: remove unnecessary comment from Person class --- lab2/person.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lab2/person.rb b/lab2/person.rb index 693ec0d..0e17ac3 100644 --- a/lab2/person.rb +++ b/lab2/person.rb @@ -1,7 +1,6 @@ require_relative 'contact' class Person - # contact только в этом классе, убрать из наследуемых переопределение attr_reader :id, :git, :contact def initialize(id:, git:, contact: Contact.new)