Skip to content

Commit 9953dea

Browse files
committed
Indent
1 parent a19b29b commit 9953dea

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Documentation/Index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -125,18 +125,18 @@ install SQLite.swift with Carthage:
125125
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:
126126
127127
``` ruby
128-
target 'YourAppTargetName' do
129-
pod 'SQLite.swift/standalone', '~> 0.11.1'
130-
end
128+
target 'YourAppTargetName' do
129+
pod 'SQLite.swift/standalone', '~> 0.11.1'
130+
end
131131
```
132132

133133
By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:
134134

135135
``` ruby
136-
target 'YourAppTargetName' do
137-
pod 'SQLite.swift/standalone', '~> 0.11.1'
138-
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139-
end
136+
target 'YourAppTargetName' do
137+
pod 'SQLite.swift/standalone', '~> 0.11.1'
138+
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139+
end
140140
```
141141

142142
See the [sqlite3 podspec][sqlite3pod] for more details.
@@ -147,9 +147,9 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the `SQLCiphe
147147
subspec in your Podfile:
148148

149149
``` ruby
150-
target 'YourAppTargetName' do
151-
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
152-
end
150+
target 'YourAppTargetName' do
151+
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
152+
end
153153
```
154154

155155
This will automatically add a dependency to the SQLCipher pod as well as extend

0 commit comments

Comments
 (0)