Commit 45460f3e authored by pug-pelle-p's avatar pug-pelle-p Committed by Nick Craver

Fixed indentation in Readme.md (#1098)

Fixed incorrect indentation in Readme.md
parent e7ba3054
......@@ -340,7 +340,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes"))
var type = (ShapeType)reader.GetInt32(typeColumnIndex);
switch (type)
{
case ShapeType.Circle:
case ShapeType.Circle:
shape = circleParser(reader);
break;
case ShapeType.Square:
......@@ -349,7 +349,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes"))
case ShapeType.Triangle:
shape = triangleParser(reader);
break;
default:
default:
throw new NotImplementedException();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment