From 6fc6a202964464cbeaa40ff0a56d4e56eac8babe Mon Sep 17 00:00:00 2001 From: Marek Czernek Date: Fri, 15 Dec 2023 23:00:23 +0100 Subject: [PATCH] fix: Improve style and readability of the distribution doc --- sources/pyside6/doc/faq/distribution.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/pyside6/doc/faq/distribution.rst b/sources/pyside6/doc/faq/distribution.rst index fea588153b..cf5d70355a 100644 --- a/sources/pyside6/doc/faq/distribution.rst +++ b/sources/pyside6/doc/faq/distribution.rst @@ -5,7 +5,7 @@ Distributing Your Application to Other Systems/Platforms After developing a couple of applications, you might want to distribute them to other users. In case you do not have much experience with Python packages, you -might have even asked: *How do I create a Python executable?*. +might have even asked: *How do I create a Python executable?* If you come from compiled programming languages, deployment is something almost trivial, but for Python is a bit difficult. @@ -15,7 +15,7 @@ distributing your virtual environment content to other users. .. important:: As Python does not support WebAssembly and mobile platforms, such as Android and iOS, you cannot deploy applications to these platforms - directly, and you require advanced processes to do so. + directly. Deploying applications to these platforms require advanced processes. .. note:: For embedded systems, you currently need to build |project| for your target platform, and deploy the installation alongside your application.