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")) ...@@ -340,7 +340,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes"))
var type = (ShapeType)reader.GetInt32(typeColumnIndex); var type = (ShapeType)reader.GetInt32(typeColumnIndex);
switch (type) switch (type)
{ {
case ShapeType.Circle: case ShapeType.Circle:
shape = circleParser(reader); shape = circleParser(reader);
break; break;
case ShapeType.Square: case ShapeType.Square:
...@@ -349,7 +349,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes")) ...@@ -349,7 +349,7 @@ using (var reader = connection.ExecuteReader("select * from Shapes"))
case ShapeType.Triangle: case ShapeType.Triangle:
shape = triangleParser(reader); shape = triangleParser(reader);
break; break;
default: default:
throw new NotImplementedException(); 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