diff --git a/src/NetrunnerDb.Net/Repository.cs b/src/NetrunnerDb.Net/Repository.cs
index 3452ecf..87a3f79 100644
--- a/src/NetrunnerDb.Net/Repository.cs
+++ b/src/NetrunnerDb.Net/Repository.cs
@@ -14,7 +14,7 @@ namespace NetrunnerDb.Net
///
///
/// The URL parameter, not needed for classes that are plural like Sets
- ///
+ /// Returns null if nothing is found
///
///
///
@@ -38,7 +38,7 @@ namespace NetrunnerDb.Net
///
/// /api/sets/ returns data about all the sets in the database.
/// 01001
- ///
+ /// Returns null if nothing is found
///
public IList GetSets()
{
@@ -59,10 +59,7 @@ namespace NetrunnerDb.Net
///
/// /api/cards/ returns data about all the cards in the database.
///
- ///
- ///
- ///
- ///
+ /// Returns null if nothing is found
public IList GetCards()
{
return GetRequest();
@@ -71,7 +68,7 @@ namespace NetrunnerDb.Net
///
/// /api/card/{code} returns data about all the cards in the database.
///
- ///
+ /// Returns null if nothing is found
///
///
///