From: Olaf Alders <olaf@wundersolutions.com>
Date: Thu, 18 Apr 2013 20:04:36 +0000 (-0400)
Subject: s/quantiy/quantity/
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9e2a6edb1250450ab15d13a4ac32767fce6aeb11;p=dbsrgits%2FDBIx-Class-Fixtures.git

s/quantiy/quantity/
---

diff --git a/lib/DBIx/Class/Fixtures.pm b/lib/DBIx/Class/Fixtures.pm
index 76f3de0..291fcfe 100644
--- a/lib/DBIx/Class/Fixtures.pm
+++ b/lib/DBIx/Class/Fixtures.pm
@@ -258,7 +258,7 @@ a JSON representation of a DBIx::Class search clause. For example:
  {
    "sets": [{
      "class": "Artist",
-     "quantiy": "all",
+     "quantity": "all",
      "cond": { "name": "Dave" }
    }]
  }
@@ -275,7 +275,7 @@ This could be specified in the cond hash like so:
  {
    "sets": [ {
      "class": "Artist",
-     "quantiy": "all",
+     "quantity": "all",
      "cond": { "no1_singles": "\> no1_albums" }
    } ]
  }
@@ -290,7 +290,7 @@ An array of relationships to be used in the cond clause.
  {
    "sets": [ {
      "class": "Artist",
-     "quantiy": "all",
+     "quantity": "all",
      "cond": { "cds.position": { ">": 4 } },
      "join": ["cds"]
    } ]