From 3a1627ae19f2800a15bf080df008ad7457a2762c Mon Sep 17 00:00:00 2001 From: RL-S Date: Mon, 15 Aug 2022 17:52:57 +0200 Subject: [PATCH] Fixed a typo succeded -> succeeded --- include/gnuplot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gnuplot.h b/include/gnuplot.h index cb6cfa4..20cb521 100644 --- a/include/gnuplot.h +++ b/include/gnuplot.h @@ -32,7 +32,7 @@ class GnuplotPipe { if (!pipe) std::cout << "failed!" << std::endl; else - std::cout << "succeded." << std::endl; + std::cout << "succeeded." << std::endl; } inline virtual ~GnuplotPipe(){ if (pipe) pclose(pipe);