You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Codo should support tag references to meta data from other methods can be reused:
classUser# @param [String] username the nam of the user to add# @param [Number] uid the user ID# @param [Number] gid the group IDconstructor: (username, uid, gid) ->classUserHelper# @param (see User#constructor)addUser: (username, uid, gid) ->newUser(username, uid, gid)
# @param username (see User#constructor)addRootUser: (username) ->newUser(username, 0, 0)
The text was updated successfully, but these errors were encountered:
Codo should support tag references to meta data from other methods can be reused:
The text was updated successfully, but these errors were encountered: