C#: Fix typo in dbscheme.

This commit is contained in:
Calum Grant
2019-12-11 18:00:58 +00:00
committed by Calum Grant
parent f67240a316
commit ecb22f1379
3 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ namespace Semmle.Extraction.CSharp.Entities
/// </summary>
public Type Type;
private NullableAnnotation annotation;
readonly private NullableAnnotation annotation;
/// <summary>
/// Gets the annotated type symbol of this annotated type.
@@ -115,7 +115,7 @@ namespace Semmle.Extraction.CSharp.Entities
if (!(base.symbol is IArrayTypeSymbol))
{
foreach (var t in base.symbol.Interfaces.Select(i=>Create(Context, i)))
foreach (var t in base.symbol.Interfaces.Select(i => Create(Context, i)))
{
trapFile.implement(this, t.TypeRef);
baseTypes.Add(t);

View File

@@ -486,7 +486,7 @@ nullability_parent(int nullability: @nullability ref, int index: int ref, int pa
type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref);
/**
* Thw nullable flow state of an expression, as determined by Roslyn.
* The nullable flow state of an expression, as determined by Roslyn.
* 0 = none (default, not populated)
* 1 = not null
* 2 = maybe null

View File

@@ -486,7 +486,7 @@ nullability_parent(int nullability: @nullability ref, int index: int ref, int pa
type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref);
/**
* Thw nullable flow state of an expression, as determined by Roslyn.
* The nullable flow state of an expression, as determined by Roslyn.
* 0 = none (default, not populated)
* 1 = not null
* 2 = maybe null