@@ -18,15 +18,15 @@ namespace OnTopic.Associations {
1818 /// <para>
1919 /// When a call is made to <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue,
2020 /// Boolean?, DateTime?)"/> the code will check to see if a property with the same name as the reference key exists, and
21- /// whether that property is decorated with the <see cref="ReferenceSetterAttribute"/> (i.e., <code >[ReferenceSetter]
22- /// </code>). If is, then the update will be routed through that property. This ensures that business logic is enforced by
23- /// local properties, instead of allowing business logic to be potentially bypassed by writing directly to the <see cref="
24- /// Topic. References"/> collection.
21+ /// whether that property is decorated with the <see cref="ReferenceSetterAttribute"/> (i.e., <c >[ReferenceSetter]</c>).
22+ /// If is, then the update will be routed through that property. This ensures that business logic is enforced by local
23+ /// properties, instead of allowing business logic to be potentially bypassed by writing directly to the <see cref="Topic.
24+ /// References"/> collection.
2525 /// </para>
2626 /// <para>
2727 /// As an example, the <see cref="Topic.BaseTopic"/> property is adorned with the <see cref="ReferenceSetterAttribute"/>.
28- /// As a result, if a client calls <code >topic.References.SetValue("BaseTopic", topic)</code >, then that update will be
29- /// routed through <see cref="Topic.BaseTopic"/>, thus enforcing any validation.
28+ /// As a result, if a client calls <c >topic.References.SetValue("BaseTopic", topic)</c >, then that update will be routed
29+ /// through <see cref="Topic.BaseTopic"/>, thus enforcing any validation.
3030 /// </para>
3131 /// <para>
3232 /// To ensure this logic, it is critical that implementers of <see cref="ReferenceSetterAttribute"/> ensure that the
0 commit comments