Skip to content

Commit f844b26

Browse files
committed
docs: add inline code
1 parent 51309bb commit f844b26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/site/markdown/docs/databaseObjects.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ In this query it is not clear which instance of the `user` table is used for eac
100100
HashMap for the `user` table - so only one of the aliases specified in the select statement will be in effect.
101101
There are two ways to deal with this problem.
102102

103-
The first is to simply create another instance of the User SqlTable object. With this method it is very clear which column
103+
The first is to simply create another instance of the User `SqlTable` object. With this method it is very clear which column
104104
belongs to which instance of the table and the library can easily calculate aliases:
105105

106106
```java

src/site/markdown/docs/quickStart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ the actual name of the table (including schema or catalog if appropriate). A tab
4848
select statement if desired. Your table should be defined by extending the `AlisableSqlTable<T>` class.
4949

5050
The class `org.mybatis.dynamic.sql.SqlColumn` is used to define columns for use in the library.
51-
SqlColumns should be created using the builder methods in SqlTable.
51+
SqlColumns should be created using the builder methods in `SqlTable`.
5252
A column definition includes:
5353

5454
1. The Java type

0 commit comments

Comments
 (0)