]> source.dussan.org Git - jackcess.git/commitdiff
tweak example
authorJames Ahlborn <jtahlborn@yahoo.com>
Sun, 1 Dec 2013 02:13:53 +0000 (02:13 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Sun, 1 Dec 2013 02:13:53 +0000 (02:13 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@843 f203690c-595d-4dc9-a70b-905162fa7fd2

src/site/xdoc/cookbook.xml

index 7bb31a9f86e9229f7a9821f7c2e4937836774663..8752425977e7532cd6cfbf2ff443eddd349cbffc 100644 (file)
         key and enable speedier lookups on the "Name" column.
       </p>
 <source>
-  // new TableBuilder(...
+  // ... new TableBuilder( ...
     .addIndex(new IndexBuilder(IndexBuilder.PRIMARY_KEY_NAME)
               .addColumns("ID").setPrimaryKey())
     .addIndex(new IndexBuilder("NameIndex")
               .addColumns("Name"))
-  // .toTable(...
+  // ... .toTable( ...
 </source>
       <p>
         Don't forget to close the Database when you are finished building it