Skip to content

Commit 744cea3

Browse files
author
Damir Dobric
committed
comments
1 parent dc18f6d commit 744cea3

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

NeoCortexApi/NeoCortexEntities/Entities/DistalDendrite.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ public class DistalDendrite : Segment, IComparable<DistalDendrite>
3131
/// </summary>
3232
public long LastUsedIteration { get => m_LastUsedIteration; set => m_LastUsedIteration = value; }
3333

34+
/// <summary>
35+
/// The seqence number of the segment. Specifies the order of the segment of the <see cref="Connections"/> instance.
36+
/// </summary>
3437
public int Ordinal { get => m_Ordinal; set => m_Ordinal = value; }
3538

3639
/// <summary>
@@ -56,11 +59,11 @@ public DistalDendrite(Cell parentCell, int flatIdx, long lastUsedIteration, int
5659
/// <summary>
5760
/// Gets all synapses owned by this distal dentrite segment.
5861
/// </summary>
59-
/// <param name="c"></param>
62+
/// <param name="mem"></param>
6063
/// <returns>Synapses.</returns>
61-
public List<Synapse> GetAllSynapses(Connections c)
64+
public List<Synapse> GetAllSynapses(Connections mem)
6265
{
63-
return c.GetSynapses(this);
66+
return mem.GetSynapses(this);
6467
}
6568

6669
/// <summary>

0 commit comments

Comments
 (0)