Skip to content

Fixed typos #313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## The easy way

The easist way to use these packages is by creating a project with
The easiest way to use these packages is by creating a project with
[Briefcase](https://github.com/beeware/briefcase). Briefcase will download
pre-compiled versions of these support packages, and add them to an Xcode project
(or pre-build stub application, in the case of macOS).

## The manual way

**NOTE** Briefcase usage is the officially supported approach for using this
support package. If you are experiencing diffculties, one approach for debugging
support package. If you are experiencing difficulties, one approach for debugging
is to generate a "Hello World" project with Briefcase, and compare the project that
Briefcase has generated with your own project.

Expand All @@ -28,7 +28,7 @@ generated on iOS and visionOS may be used as rough references as well.

### Using Objective C

Once you've added the Python XCframework to your project, you'll need to
Once you've added the Python XCFramework to your project, you'll need to
initialize the Python runtime in your Objective C code (This is step 10 of the
iOS guide linked above). This initialization should generally be done as early
as possible in the application's lifecycle, but definitely needs to be done
Expand Down Expand Up @@ -97,7 +97,7 @@ There are 2 ways to access the Python runtime in your project code.

You can use the [Python Embedded C
API](https://docs.python.org/3/extending/embedding.html) to invoke Python code
and interact with Python objects. This is a raw C API that is accesible to both
and interact with Python objects. This is a raw C API that is accessible to both
Objective C and Swift.

### PythonKit
Expand Down
Loading