From 23d516241ee5407d74e4bc5229551ab650032012 Mon Sep 17 00:00:00 2001 From: sheepwall <a.sve@live.se> Date: Fri, 8 Mar 2019 14:11:38 +0100 Subject: [PATCH] bare3_1 --- examples/bare3.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/bare3.rs b/examples/bare3.rs index 3922831..cb1915b 100644 --- a/examples/bare3.rs +++ b/examples/bare3.rs @@ -71,19 +71,19 @@ fn main() -> ! { // // What is the type of `bs`? // -// ** It is a byte slice. A pointer to an array and the length of that array. ** +// ** It is a byte slice. A dynamic array. ** // // What is the type of `c`? // -// ** your answer here ** +// ** It is an element of bs, a byte ** // // What is the type of `a`? // -// ** your answer here ** +// ** An array of type u8 with length 4. ** // // What is the type of `i`? // -// ** your answer here ** +// ** usize (32 or 64-bit unsigned.) from the str::len() ** // // Commit your answers (bare3_1) // -- GitLab