Skip to content

Commit

Permalink
fix(IBelief): improve comment clarity for interface and its method
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaBerkers committed Jun 24, 2024
1 parent 77a83e1 commit 74aba91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Aplib.Core/Belief/Beliefs/IBelief.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
namespace Aplib.Core.Belief.Beliefs
{
/// <summary>
/// A belief represents/encapsulates an observation (i.e., piece of information of the game state as perceived by an agent).
/// A belief represents/encapsulates an observation,
/// i.e., information about the game state as perceived by an agent.
/// </summary>
public interface IBelief
{
/// <summary>
/// Updates the belief based on information of the game state.
/// Updates the belief based on information about the game state.
/// </summary>
void UpdateBelief();
}
Expand Down

0 comments on commit 74aba91

Please sign in to comment.