From 2e504c0203e62335a3c5963f5fe61bb364383403 Mon Sep 17 00:00:00 2001 From: James Juett Date: Thu, 7 Nov 2024 13:41:32 -0500 Subject: [PATCH] change error example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad00725..6f39d37 100644 --- a/README.md +++ b/README.md @@ -240,7 +240,7 @@ int main() { cout << row["animal"] << "\n"; } } catch(const csvstream_exception &e) { - cerr << "Error: " << e.what() << "\n"; + cerr << e.what() << "\n"; return 1; } }