Skip to content

Commit ef675af

Browse files
committed
Shortening text in Python API
1 parent 85e3339 commit ef675af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
namespace py = pybind11;
1313

1414
#define DOC(function) \
15-
(std::string("See documentation of C++ API: :cpp:func:`cppcolormap::") + \
16-
std::string(function) + std::string("`")) \
15+
(std::string("See C++ API: :cpp:func:`cppcolormap::") + std::string(function) + \
16+
std::string("`")) \
1717
.c_str()
1818

1919
#define ENUM(function) \
20-
(std::string("See documentation of C++ API: :cpp:enum:`cppcolormap::") + \
21-
std::string(function) + std::string("`")) \
20+
(std::string("See C++ API: :cpp:enum:`cppcolormap::") + std::string(function) + \
21+
std::string("`")) \
2222
.c_str()
2323

2424
/**

0 commit comments

Comments
 (0)