Skip to content

Commit 4e899cc

Browse files
JaBistDuNarrischJaBistDuNarrisch
authored andcommitted
Minor changes
1 parent a1f19e4 commit 4e899cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Migrator/Framework/ForeignKeyConstraint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public ForeignKeyConstraint(string name, string parentTable, string[] parentcolu
2626
public string[] ChildColumns { get; set; }
2727

2828
/// <summary>
29-
/// Gets or sets the on update text. Currently only used for SQLite.
29+
/// Gets or sets the on delete text. Currently only used for SQLite.
3030
/// </summary>
3131
public string OnDelete { get; set; }
3232

src/Migrator/Framework/ITransformationProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ public interface ITransformationProvider : IDisposable
403403
/// </summary>
404404
/// <param name="table">The table name that you want the columns for.</param>
405405
/// <returns></returns>
406-
[Obsolete("We cannot resolve the DbType or MigratorDbType exactly so the result is nust a guess. Also the default value in the result is depending on DbType and therefore also a guess. Do not use this method any more. Look up the type in your migration history.")]
406+
[Obsolete("We cannot resolve the DbType or MigratorDbType exactly so the result is just a guess. Also the default value in the result is depending on DbType and therefore also a guess. Do not use this method any more. Look up the type in your migration history.")]
407407
Column[] GetColumns(string table);
408408

409409
/// <summary>
@@ -415,13 +415,13 @@ public interface ITransformationProvider : IDisposable
415415
int GetColumnContentSize(string table, string columnName);
416416

417417
/// <summary>
418-
/// Get information about a single column in a table.
418+
/// Gets information about a single column in a table.
419419
/// <see cref="Column.MigratorDbType"/> and <see cref="Column.Type"/> can in some cases only be guessed. Do not rely on them. Same for <see cref="Column.DefaultValue"/>
420420
/// </summary>
421421
/// <param name="table">The table name that you want the columns for.</param>
422422
/// <param name="column">The column name for which you want information.</param>
423423
/// <returns></returns>
424-
[Obsolete("We cannot resolve the DbType or MigratorDbType exactly so the result is nust a guess. Also the default value in the result is depending on DbType and therefore also a guess. Do not use this method any more. Look up the type in your migration history.")]
424+
[Obsolete("We cannot resolve the DbType or MigratorDbType exactly so the result is just a guess. Also the default value in the result is depending on DbType and therefore also a guess. Do not use this method any more. Look up the type in your migration history.")]
425425
Column GetColumnByName(string table, string column);
426426

427427
/// <summary>

0 commit comments

Comments
 (0)