From 201a7209829efa3844f517a22700c0d16485e22b Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 25 Jun 2014 16:18:20 -0700 Subject: [PATCH] Docs link fixes. --- docs/SchemaMigration.md | 4 ++-- docs/SimpleCodeExample.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/SchemaMigration.md b/docs/SchemaMigration.md index 8cf0018..9bd49b6 100644 --- a/docs/SchemaMigration.md +++ b/docs/SchemaMigration.md @@ -23,11 +23,11 @@ public DecorRepository (PersistenceContext ctx) { super(ctx); - ctx.registerMigration(DecorRecord.class, + ctx.registerMigration(DecorRecord.class, new SchemaMigration.Rename(17004, "scale", DecorRecord.ACTOR_SCALE)); ctx.registerMigration(DecorRecord.class, new SchemaMigration.Drop(17004, "offsetX")); ctx.registerMigration(DecorRecord.class, new SchemaMigration.Drop(17004, "offsetY")); - ctx.registerMigration(DecorRecord.class, + ctx.registerMigration(DecorRecord.class, new SchemaMigration.Retype(17004, DecorRecord.FURNI_SCALE)); } ``` diff --git a/docs/SimpleCodeExample.md b/docs/SimpleCodeExample.md index ca3d8e3..da8cc45 100644 --- a/docs/SimpleCodeExample.md +++ b/docs/SimpleCodeExample.md @@ -150,4 +150,4 @@ public class PersonRepository extends DepotRepository } ``` -See the [example queries](ExampleQueries) page for examples of other kinds of queries. +See the [example queries](ExampleQueries.md) page for examples of other kinds of queries.