Skip to content

Commit 7fa6077

Browse files
committed
Fix doc comments
1 parent 7439534 commit 7fa6077

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

nuget/SQLite-net/SQLite-net.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<DefineConstants>TRACE;DEBUG;USE_SQLITEPCL_RAW USE_NEW_REFLECTION_API NO_CONCURRENT</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
2828
<WarningLevel>4</WarningLevel>
29+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2930
<DocumentationFile>bin\Debug\SQLite-net.xml</DocumentationFile>
3031
</PropertyGroup>
3132
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -36,6 +37,7 @@
3637
<DefineConstants>TRACE;USE_SQLITEPCL_RAW USE_NEW_REFLECTION_API NO_CONCURRENT</DefineConstants>
3738
<ErrorReport>prompt</ErrorReport>
3839
<WarningLevel>4</WarningLevel>
40+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
3941
<DocumentationFile>bin\Release\SQLite-net.xml</DocumentationFile>
4042
</PropertyGroup>
4143
<ItemGroup>

src/SQLite.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -844,6 +844,9 @@ public IEnumerable<object> DeferredQuery(TableMapping map, string query, params
844844
/// <param name="pk">
845845
/// The primary key.
846846
/// </param>
847+
/// <param name="map">
848+
/// The TableMapping used to identify the table.
849+
/// </param>
847850
/// <returns>
848851
/// The object with the given primary key. Throws a not found exception
849852
/// if the object is not found.
@@ -1626,9 +1629,6 @@ public int DeleteAll<T> ()
16261629
/// <returns>
16271630
/// The number of objects deleted.
16281631
/// </returns>
1629-
/// <typeparam name='T'>
1630-
/// The type of objects to delete.
1631-
/// </typeparam>
16321632
public int DeleteAll (TableMapping map)
16331633
{
16341634
var query = string.Format ("delete from \"{0}\"", map.TableName);

0 commit comments

Comments
 (0)