Skip to content

Commit 335ffa6

Browse files
committed
format code
1 parent ace84ae commit 335ffa6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

matplotlibcpp.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ namespace matplotlibcpp {
248248
Py_DECREF(res);
249249
}
250250

251-
inline void title(const std::string &titlestr)
251+
252+
inline void title(const std::string &titlestr)
252253
{
253254
PyObject* pytitlestr = PyString_FromString(titlestr.c_str());
254255
PyObject* args = PyTuple_New(1);
@@ -257,7 +258,7 @@ namespace matplotlibcpp {
257258
PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_title, args);
258259
if(!res) throw std::runtime_error("Call to title() failed.");
259260

260-
//if PyDeCRFF, the show function doesn't wook on Mac OS
261+
//if PyDeCRFF, the show function doesn't wook on Mac OS
261262
}
262263

263264
inline void show()

0 commit comments

Comments
 (0)