From 8a97dea2e74508288f597b1ca4b28bc586a9caa6 Mon Sep 17 00:00:00 2001 From: Abdelkader HASSINE Date: Sat, 25 Apr 2026 23:00:07 +0200 Subject: [PATCH] Fix PyPI casing and OperatingSystem library name --- website/docs/chapter-01/02_architecture.md | 2 +- website/docs/chapter-03/05_advanced_importing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/chapter-01/02_architecture.md b/website/docs/chapter-01/02_architecture.md index a3d68ee..43b27b6 100644 --- a/website/docs/chapter-01/02_architecture.md +++ b/website/docs/chapter-01/02_architecture.md @@ -97,7 +97,7 @@ Recall the technology Robot Framework is built on and the prerequisites for runn Robot Framework is built on **Python** but is adaptable to other languages and technologies through external libraries. To run Robot Framework, an [officially supported version](https://devguide.python.org/versions/) of the **Python interpreter** is required on the machine executing the tests|tasks. -Typically, Robot Framework and its libraries are installed via the "package installer for Python" (`pip`) from [PyPi.org](https://pypi.org/project/robotframework/), allowing for straightforward installation and setup. +Typically, Robot Framework and its libraries are installed via the "package installer for Python" (`pip`) from [PyPI](https://pypi.org/project/robotframework/), allowing for straightforward installation and setup. Robot Framework itself does not have any external dependencies, but additional third party tools or keyword libraries may require additional installations. diff --git a/website/docs/chapter-03/05_advanced_importing.md b/website/docs/chapter-03/05_advanced_importing.md index be27581..68338eb 100644 --- a/website/docs/chapter-03/05_advanced_importing.md +++ b/website/docs/chapter-03/05_advanced_importing.md @@ -38,7 +38,7 @@ Understand how transitive imports of resource files and libraries work. Let's assume the following libraries and resource files shall be used: - **Library** `A` - **Library** `B` -- **Library** `Operating System` +- **Library** `OperatingSystem` - **Resource** `tech_keywordsA.resource` - **Resource** `tech_keywordsB.resource` - **Resource** `variables.resource`