Skip to content

Commit 80e4fe8

Browse files
committed
Update the comment lines.
1 parent bf0919d commit 80e4fe8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

com.unity.ml-agents/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and this project adheres to
1818

1919
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
2020
- Added the capacity to initialize behaviors from any checkpoint and not just the latest one (#5525)
21-
21+
- Added the ability to get a read-only view of the stacked observations (#5523)
2222
#### ml-agents / ml-agents-envs / gym-unity (Python)
2323
- Set gym version in gym-unity to gym release 0.20.0
2424
- Added support for having `beta`, `epsilon`, and `learning rate` on separate schedules (affects only PPO and POCA). (#5538)

com.unity.ml-agents/Runtime/Sensors/StackingSensor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,9 @@ public BuiltInSensorType GetBuiltInSensorType()
288288
}
289289

290290
/// <summary>
291-
/// Returns a read-only view of the observations that added.
291+
/// Returns the stacked observations as a read-only collection.
292292
/// </summary>
293-
/// <returns>A read-only view of the observations list.</returns>
293+
/// <returns>The stacked observations as a read-only collection.</returns>
294294
internal ReadOnlyCollection<float> GetStackedObservations()
295295
{
296296
List<float> observations = new List<float>();

0 commit comments

Comments
 (0)