Skip to content

Commit 8215629

Browse files
committed
Clarify iOS 7 instructions
Signed-off-by: Stephen Celis <stephen@stephencelis.com>
1 parent 3e8f7d3 commit 8215629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/Index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ It’s possible to use SQLite.swift in a target that doesn’t support framework
104104

105105
3. Remove `import sqlite3` (and `@import sqlite3;`) from the SQLite.swift source files that call it.
106106

107-
4. Add the following lines to your project’s [bridging header](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_79) (a file usually in the form of `$(TARGET_NAME)-Bridging-Header.h`.
107+
4. Add the following lines to your project’s [bridging header](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_79) (a file usually in the form of `$(TARGET_NAME)-Bridging-Header.h`).
108108

109109
``` swift
110110
#import <sqlite3.h>
111111
#import "SQLite-Bridging.h"
112112
```
113113

114-
> _Note:_ Adding SQLite.swift source files directly to your application will both remove the `SQLite` module namespace and expose internal functions and variables. Please [report any namespace collisions and bugs](https://github.com/stephencelis/SQLite.swift/issues/new) you encounter.
114+
> _Note:_ Adding SQLite.swift source files directly to your application will both remove the `SQLite` module namespace (no need—or ability—to `import SQLite`) and expose internal functions and variables. Please [report any namespace collisions and bugs](https://github.com/stephencelis/SQLite.swift/issues/new) you encounter.
115115

116116

117117
## Getting Started

0 commit comments

Comments
 (0)