From 1ec325d7297877515688e39c826b1876f9f87a70 Mon Sep 17 00:00:00 2001 From: Ge Wang Date: Wed, 12 Jul 2023 22:33:02 -0700 Subject: [PATCH] proper plural form --- src/core/chuck.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/chuck.h b/src/core/chuck.h index f11a191fe..5c4f5ac73 100644 --- a/src/core/chuck.h +++ b/src/core/chuck.h @@ -121,11 +121,11 @@ class ChucK std::list< std::string > getParamStringList( const std::string & key ); public: - // compile a file -> chuck bytecode -> spork as new shred + // compile a file -> chuck bytecode -> spork as new shred(s) // returns ID of the new shred (or of the first new shred, if count > 1) // returns 0 if unsuccessful or no shreds sporked t_CKUINT compileFile( const std::string & path, const std::string & argsTogether, t_CKINT count = 1 ); - // compile code/text -> chuck bytecode -> spork as new shred + // compile code/text -> chuck bytecode -> spork as new shred(s) // returns ID of the new shred (or of the first new shred, if count > 1) // returns 0 if unsuccessful or no shreds sporked t_CKUINT compileCode( const std::string & code, const std::string & argsTogether, t_CKINT count = 1, t_CKBOOL immediate = TRUE );