Skip to content

Commit

Permalink
proper plural form
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Jul 13, 2023
1 parent 3368643 commit 1ec325d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/chuck.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 1ec325d

Please sign in to comment.