From d3c9c5cd34c05af19bd9612265b86a2d594a48a6 Mon Sep 17 00:00:00 2001 From: Bailey Thompson Date: Tue, 12 Dec 2017 20:18:43 -0500 Subject: [PATCH] STL -> C++ standard library containers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f41c3c1..71dbdf6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Containers This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory. -Inspired by the C++ STL. Implementation of the STL data structures using C; however, the data structures have different interfaces than those in the STL. +Inspired by the C++ standard library. Implementation of the C++ standard library data structures using C; however, the data structures have different interfaces than those in the C++ standard library. # Sequence containers Data structures which can be accessed sequentially.