From 8afd39ac0899c5aadc3b12cfd95ec6cc94d9ef38 Mon Sep 17 00:00:00 2001 From: Fred Young Date: Sun, 21 Apr 2024 14:29:11 -0400 Subject: [PATCH] Update about.md Fixed typo "speficic" to "specific" --- concepts/vector-arrays/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/vector-arrays/about.md b/concepts/vector-arrays/about.md index 406ac5f73..539173a07 100644 --- a/concepts/vector-arrays/about.md +++ b/concepts/vector-arrays/about.md @@ -37,7 +37,7 @@ std::vector countdown {3, 2, 1}; Vectors and arrays share the same functions to access their elements. You can use the member functions `front` and `back` to get the first and last elements of the container. -There is also `at` and the `[]` operator to access speficic elements. +There is also `at` and the `[]` operator to access specific elements. ```cpp countdown[0];