Skip to content

Commit

Permalink
Merge pull request #4031 from LeyloD/patch-1
Browse files Browse the repository at this point in the history
Docs: Update World.cs added close XML element
  • Loading branch information
limebell authored Feb 13, 2025
2 parents d3d89c3 + b564279 commit 7d469db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Libplanet.Action/State/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ private World(IWorldState baseState, IWorldDelta delta)
[Pure]
public ITrie Trie => _baseState.Trie;

/// <inheritdoc cref="IWorldState.Legacy/>
/// <inheritdoc cref="IWorldState.Legacy"/>
[Pure]
public bool Legacy => _baseState.Legacy;

/// <inheritdoc cref="IWorldState.Version/>
/// <inheritdoc cref="IWorldState.Version"/>
[Pure]
public int Version => _baseState.Version;

Expand All @@ -52,7 +52,7 @@ public IAccount GetAccount(Address address)
[Pure]
public IAccountState GetAccountState(Address address) => GetAccount(address);

/// <inheritdoc cref="IWorld.SetAccount/>
/// <inheritdoc cref="IWorld.SetAccount"/>
[Pure]
public IWorld SetAccount(Address address, IAccount account)
{
Expand Down

0 comments on commit 7d469db

Please sign in to comment.