From 7d11821cacb3fc3e33fb0f88eae305a82c43eaa5 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 3 Feb 2021 20:01:41 +0000 Subject: [PATCH] bolding function --- subjects/matrix_transposition/README.md | 2 +- subjects/tuples/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/matrix_transposition/README.md b/subjects/matrix_transposition/README.md index 64863790..8405c648 100644 --- a/subjects/matrix_transposition/README.md +++ b/subjects/matrix_transposition/README.md @@ -4,7 +4,7 @@ - Define the structure matrix as a tuple of 2 tuples of 2 `i32`'s. -- Define a function that calculates the transpose matrix of a 2x2 matrix. +- Define a **function** that calculates the transpose matrix of a 2x2 matrix. - Note: diff --git a/subjects/tuples/README.md b/subjects/tuples/README.md index 2209f676..7d84a580 100644 --- a/subjects/tuples/README.md +++ b/subjects/tuples/README.md @@ -6,7 +6,7 @@ - Each student is identified by an id number of type i32, his/her name and his/her last name as a string Print the content of the tuple to stdout -- Then define three functions to return the id, first name and last name. +- Then define three **functions** to return the id, first name and last name. ### Notions