X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=29006b380fff0cbd05b10884de886133a91f73a4;hb=08ae25e9778ecddbda5d44e2b5db9c17a6ec7741;hp=53328118dbace6a6fa3a57be534a521b06f0ca1b;hpb=6290bf87f4960688b5aec32fc762886031e9db09;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 5332811..29006b3 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -233,7 +233,7 @@ browser, not in the console window from which you're running your application, which is where logging output usually goes. Make sure when adding new plugins you also include them as a new -dependancy within the Makefile.PL file. For example, after adding +dependency within the Makefile.PL file. For example, after adding the StackTrace plugin the Makefile.PL should include the following line: @@ -560,8 +560,9 @@ tutorial. =head1 CREATE A SQLITE DATABASE In this step, we make a text file with the required SQL commands to -create a database table and load some sample data. We will use SQLite, -a popular database that is lightweight and easy to use. Open +create a database table and load some sample data. We will use +SQLite (L), a popular database that is +lightweight and easy to use. Be sure to get at least version 3. Open C in your editor and enter: --