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
Repository::targets was created before we implemented delegated targets, then we added Repository::all_targets.
On pub fn targets in tough/src/lib.rs; it says Returns the list of targets present in the repository. which doesn't clarify about delegated targets, and 4 methods down is all_targets, which includes delegated, and says return a vec of all targets including all target files delegated by targets.
Maybe those two should be next to each other, with docstrings that make the difference clearer.
The text was updated successfully, but these errors were encountered:
Repository::targets
was created before we implemented delegated targets, then we addedRepository::all_targets
.On
pub fn targets
in tough/src/lib.rs; it saysReturns the list of targets present in the repository.
which doesn't clarify about delegated targets, and 4 methods down isall_targets
, which includes delegated, and saysreturn a vec of all targets including all target files delegated by targets
.Maybe those two should be next to each other, with docstrings that make the difference clearer.
The text was updated successfully, but these errors were encountered: