From 0cdd791b9fe95a9fd3435a8af37dc20d6f5216df Mon Sep 17 00:00:00 2001 From: ary <75646364+arynnette@users.noreply.github.com> Date: Tue, 25 Jun 2024 04:03:23 -0400 Subject: fix typo/grammatical error in rust.html.markdown (#4985) --- rust.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust.html.markdown b/rust.html.markdown index 421124be..11483eef 100644 --- a/rust.html.markdown +++ b/rust.html.markdown @@ -99,7 +99,7 @@ fn main() { // A string slice – an immutable view into another string // This is basically an immutable pair of pointers to a string – it doesn’t // actually contain the contents of a string, just a pointer to - // the begin and a pointer to the end of a string buffer, + // the beginning and a pointer to the end of a string buffer, // statically allocated or contained in another object (in this case, `s`). // The string slice is like a view `&[u8]` into `Vec`. let s_slice: &str = &s; -- cgit v1.2.3