From f760682f5355484a9425cccae5acace15234bbf7 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 18:04:39 +0300 Subject: [PATCH] docs(blood_types_s) correct grammar --- subjects/blood_types_s/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/blood_types_s/README.md b/subjects/blood_types_s/README.md index e8a977d9..d809c206 100644 --- a/subjects/blood_types_s/README.md +++ b/subjects/blood_types_s/README.md @@ -15,11 +15,11 @@ Use the following table to define the methods asked: | B- | B+, B-, AB+, AB- | B-, O- | | AB- | AB+, AB- | AB-, A-, B-, O- | -Write three methods for BloodType: +Implement three methods for `BloodType`: -- `can_receive_from`: which returns true if `self` can receive blood from `other` blood type -- `donors`: which returns all the blood types that can give blood to `self` -- `recipients`: which returns all the blood types that can receive blood from `self` +- `can_receive_from`: returns `true` if `self` **can** receive blood from `other` blood type. +- `donors`: which returns all the blood types that can give blood to `self`. +- `recipients`: which returns all the blood types that can receive blood from `self`. ### Expected Functions and Structures