From 859720a2c22106b5a6f91ec5a0ea14068b5982b4 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 22 May 2022 17:07:49 +0300 Subject: [PATCH] docs(to_url): correct grammar --- subjects/to_url/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subjects/to_url/README.md b/subjects/to_url/README.md index 0328f2f8..ae805352 100644 --- a/subjects/to_url/README.md +++ b/subjects/to_url/README.md @@ -2,9 +2,7 @@ ### Instructions -Define a **function** called `to_url` that takes a string and substitutes every white-space with '%20'. - -### Expected Function +Create a **function** named `to_url` which takes a string and substitutes every white-space with `"%20"`. ```rust pub fn to_url(s: &str) -> String {