Showing 2 changed files with 6 additions and 6 deletions
+5 -5
lib/DBIx/Custom/Guide.pod
... ...
@@ -13,7 +13,7 @@ This is L<DBI> wrapper class like L<DBIx::Class> or L<DBIx::Simple>.
13 13
 You can do thing more easy than L<DBIx::Class>, more flexible
14 14
 than L<DBIx::Simple>.
15 15
 
16
-L<DBIx::Custom> is B<not< O/R mapper, O/R mapper is usefule, but
16
+L<DBIx::Custom> is not O/R mapper, O/R mapper is usefule, but
17 17
 you must learn many things. Created SQL is sometimes inefficient,
18 18
 and in many cases you create raw SQL because
19 19
 O/R mapper can't make complex SQL
... ...
@@ -514,7 +514,7 @@ when get data from database.
514 514
 
515 515
 =head3 Register filter : C<register_filter()>
516 516
 
517
-use C<register_filter() to register filter.
517
+use C<register_filter()> to register filter.
518 518
 
519 519
     $dbi->register_filter(
520 520
         # Time::Piece object to DATE format
... ...
@@ -661,7 +661,7 @@ You can use C<each_column()> to process all column infos.
661 661
         }
662 662
     );
663 663
 
664
-C<each_column() receive callback.
664
+C<each_column()> receive callback.
665 665
 callback arguments are L<DBIx::Custom> object, table name, column name, column information.
666 666
 Filter is applied automatically by column type.
667 667
 
... ...
@@ -678,7 +678,7 @@ You can embedd tag into SQL.
678 678
     {TAG_NAME ARG1 ARG2 ...}
679 679
 
680 680
 Tag start C<{> and end C<}>. 
681
-Don't insert space between C<{} and tag name.
681
+Don't insert space between C<{}> and tag name.
682 682
 
683 683
 C<{> and C<}> are reserved word.
684 684
 If you want to use these, escape it by '\';
... ...
@@ -1103,7 +1103,7 @@ You can create query from any SQL by C<create_query()>.
1103 1103
 =head3 Add method
1104 1104
 
1105 1105
 You can add method to L<DBIx::Custom> object.
1106
-use C<method().
1106
+use C<method()>.
1107 1107
 
1108 1108
     $dbi->method(
1109 1109
         update_or_insert => sub {
+1 -1
lib/DBIx/Custom/Guide/Ja.pod
... ...
@@ -1137,7 +1137,7 @@ C<create_query()>を使って任意のSQLのクエリを作成
1137 1137
 
1138 1138
 =head3 メソッドの登録
1139 1139
 
1140
-D<DBIx::Custom>オブジェクトにメソッドを追加することができます。
1140
+L<DBIx::Custom>オブジェクトにメソッドを追加することができます。
1141 1141
 C<method()>を使用します。
1142 1142
 
1143 1143
     $dbi->method(