From c312e975a89ca877f52f69f89f2e50e12c9192e9 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sat, 6 Sep 2014 15:37:54 -0400 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f6c5466..6261f39 100644 --- a/README.md +++ b/README.md @@ -102,13 +102,13 @@ Each instance of a sortable model has two convenience methods to get the next or By default, these methods will respect their order in relation to a `SortableForeignKey` field, if present. Meaning, that given the following data: -| Parent Model 1 | | -| | Child Model 1 | -| | Child Model 2 | -| Parent Model 2 | | -| | Child Model 3 | -| | Child Model 4 | -| | Child Model 5 | + | Parent Model 1 | | + | | Child Model 1 | + | | Child Model 2 | + | Parent Model 2 | | + | | Child Model 3 | + | | Child Model 4 | + | | Child Model 5 | "Child Model 2" `get_next()` would return `None` "Child Model 3" `get_previous` would return `None`