From 171eb42c9e42dbbe1a01e40c3ec321b523b6beb9 Mon Sep 17 00:00:00 2001 From: Adam Judd Date: Wed, 9 Jul 2014 22:31:41 +0930 Subject: [PATCH] Fix for joins code block --- docs/en/topics/datamodel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/topics/datamodel.md b/docs/en/topics/datamodel.md index 6643b5656..a6a1d85bf 100755 --- a/docs/en/topics/datamodel.md +++ b/docs/en/topics/datamodel.md @@ -316,7 +316,7 @@ that does not exist in a Group. You can limit the amount of records returned in a DataList by using the `limit()` method. - + :::php // Returning the first 5 members, sorted alphabetically by Surname $members = Member::get()->sort('Surname')->limit(5);