From f7ddec3a1bf770f555da89ff59886ff1c8fe1b9c Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 19:25:49 +0100 Subject: [PATCH] docs(molecules-cells): correct grammar --- subjects/molecules-cells/README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/subjects/molecules-cells/README.md b/subjects/molecules-cells/README.md index 51189556..c1650b93 100644 --- a/subjects/molecules-cells/README.md +++ b/subjects/molecules-cells/README.md @@ -2,13 +2,12 @@ ### Instructions -Write two functions: +Create two functions which accept a `string`, and return a `string`: -- `RNA` that given a DNA strand it must return is complement RNA strand -- `DNA` that given a RNA strand it must return is complement DNA strand (invert RNA) - -Since both strands are a sequence of nucleotides. It will be given the four nucleotides and its complements +- `RNA`: that converts a DNA strand into its compliment RNA strand. +- `DNA`: that converts an RNA strand into its compliment DNA strand. +Compliments: ``` DNA | RNA G - C @@ -17,4 +16,4 @@ DNA | RNA A - U ``` -Each strand must be represented as upper case string, without spaces, ex: `'ATCG'` is a valid DNA strand. +Each strand must be represented as upper case `string`, without spaces, eg: `"ATCG"` is a valid DNA strand.