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
There's currently a typo in the Asana::Resources::Section.find_by_id method. In the method declaration, the section id is declared as id, but the method body tries to refer to it as the gid.
The resulting error message is NameError: undefined local variable or method 'gid' for Asana::Resources::Section:Class.
There's currently a typo in the
Asana::Resources::Section.find_by_id
method. In the method declaration, the section id is declared asid
, but the method body tries to refer to it as thegid
.The resulting error message is
NameError: undefined local variable or method 'gid' for Asana::Resources::Section:Class
.Here's a link to the line of code in question
The code is currently:
But it should be:
The text was updated successfully, but these errors were encountered: