Skip to content

Typo in Wiki #596

Closed
Closed
@edwardmarks

Description

@edwardmarks

In Using Parse SDKs with Parse Server

Swift code uses localhost.com instead of localhost.

Code was:

let configuration = ParseClientConfiguration {
    $0.applicationId = "YOUR_APP_ID"
    $0.clientKey = ""
    $0.server = "http://localhost.com:1337/parse"
}
Parse.initializeWithConfiguration(configuration)

Should be:

let configuration = ParseClientConfiguration {
    $0.applicationId = "YOUR_APP_ID"
    $0.clientKey = ""
    $0.server = "http://localhost:1337/parse"
}
Parse.initializeWithConfiguration(configuration)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions