[API] Doc comments
netherfoam opened this issue ยท 0 comments
It'd be great if we could get some method header comments like
/** * Takes the given amount away from the given account. * This method will fail if the account does not exist (?) or they do not have the required balance (?) * @param from The account to take money from * @param value The amount to take away from them */ public void subFunds(String from, double value){ ... }