From 58a2eb01555a778d1c8453697d91ce353b0e605b Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Fri, 19 Jul 2013 18:14:53 +1200 Subject: [PATCH] Versioned documentation typo (Thanks aragonne) --- docs/en/topics/versioning.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/topics/versioning.md b/docs/en/topics/versioning.md index 5e8d07663..351e60c9e 100644 --- a/docs/en/topics/versioning.md +++ b/docs/en/topics/versioning.md @@ -59,8 +59,8 @@ You can explicitly request a certain stage through various getters on the `Versi $liveRecords = Versioned::get_by_stage('MyRecord', 'Live'); // Fetching a single record - $stageRecord = Versioned::get_one_by_stage('MyRecord', 'Stage')->byID(99); - $liveRecord = Versioned::get_one_by_stage('MyRecord', 'Live')->byID(99); + $stageRecord = Versioned::get_by_stage('MyRecord', 'Stage')->byID(99); + $liveRecord = Versioned::get_by_stage('MyRecord', 'Live')->byID(99); ### Historical Versions