diff --git a/DEVELOPERS.md b/DEVELOPERS.md index d849541cf2..c33660b524 100644 --- a/DEVELOPERS.md +++ b/DEVELOPERS.md @@ -169,7 +169,7 @@ The structure of the C files in r2 must be like this: #include ## includes static int globals ## const, define, global variables static void helper() {} ## static functions -R_IPI void internal() {} ## internal apis (used only inside the library +R_IPI void internal() {} ## internal apis (used only inside the library) R_API void public() {} ## public apis starting with constructor/destructor ```