-
Notifications
You must be signed in to change notification settings - Fork 4.3k
[docs] Add missing package docs #5108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -12,7 +12,9 @@ public class SimpleMultiAgentGroup : IMultiAgentGroup, IDisposable | |||
readonly int m_Id = MultiAgentGroupIdCounter.GetGroupId(); | |||
HashSet<Agent> m_Agents = new HashSet<Agent>(); | |||
|
|||
|
|||
/// <summary> | |||
/// Unregister all member Agents on dispose of SimpleMultiAgentGroup. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This describes what the code does. I think it should just be Disposes of the SimpleMultiAgentGroup
.
@@ -16,11 +16,13 @@ public interface IMultiAgentGroup | |||
/// <summary> | |||
/// Register agent to the MultiAgentGroup. | |||
/// </summary> | |||
/// <param name="agent">The Agent to unregister.</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// <param name="agent">The Agent to unregister.</param> | |
/// <param name="agent">The Agent to register.</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 for the MultiAgentGroup part :)
Proposed change(s)
Added docs that failed the XmlDoc check on the package.
Types of change(s)
Checklist
Other comments