From a8335b1796d221bd8842280461562fc9356e3699 Mon Sep 17 00:00:00 2001 From: James Wiens Date: Mon, 10 May 2021 20:43:13 -0700 Subject: [PATCH] Fix: markdown in "Real world architectures" table ### Description The [Real world architectures](https://github.com/donnemartin/system-design-primer/edit/master/README.md#real-world-architectures) was missing a closing `|` on the _"Cassandra"_ row. This PR fixes the markdown for that section. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 266f8b16..a10d4dc7 100644 --- a/README.md +++ b/README.md @@ -1700,7 +1700,7 @@ Handy metrics based on numbers above: | | | | | Data store | **Bigtable** - Distributed column-oriented database from Google | [harvard.edu](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/chang06bigtable.pdf) | | Data store | **HBase** - Open source implementation of Bigtable | [slideshare.net](http://www.slideshare.net/alexbaranau/intro-to-hbase) | -| Data store | **Cassandra** - Distributed column-oriented database from Facebook | [slideshare.net](http://www.slideshare.net/planetcassandra/cassandra-introduction-features-30103666) +| Data store | **Cassandra** - Distributed column-oriented database from Facebook | [slideshare.net](http://www.slideshare.net/planetcassandra/cassandra-introduction-features-30103666) | | Data store | **DynamoDB** - Document-oriented database from Amazon | [harvard.edu](http://www.read.seas.harvard.edu/~kohler/class/cs239-w08/decandia07dynamo.pdf) | | Data store | **MongoDB** - Document-oriented database | [slideshare.net](http://www.slideshare.net/mdirolf/introduction-to-mongodb) | | Data store | **Spanner** - Globally-distributed database from Google | [research.google.com](http://research.google.com/archive/spanner-osdi2012.pdf) |