Skip to content

Commit

Permalink
Include XML docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Feb 29, 2020
1 parent 48b3bfe commit bcd106d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/AdjacencyList/AdjacencyList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<PackageTags>graphs graph theory adjacency list</PackageTags>
<AssemblyName>SCGraphTheory.AdjacencyList</AssemblyName>
<RootNamespace>SCGraphTheory.AdjacencyList</RootNamespace>

<DocumentationFile>SCGraphTheory.AdjacencyList.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/AdjacencyList/Graph{TNode,TEdge}.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace SCGraphTheory.AdjacencyList
/// <para />
/// This implementation allows data to be included in nodes and edges via inheritance, but has a couple of potential drawbacks.
/// Firstly, the addition of a <see cref="TNode"/> to more than one <see cref="Graph{TNode, TEdge}"/> isn't protected against, with potentially confusing results.
/// Secondly, undirected edges are a complex to implement.
/// Secondly, undirected edges are a little complex to implement.
/// </summary>
/// <typeparam name="TNode">The type of each node.</typeparam>
/// <typeparam name="TEdge">The type of each edge.</typeparam>
Expand Down

0 comments on commit bcd106d

Please sign in to comment.