From 7094bce982c02d8c03807af1c72140dc09e728a6 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 12 Nov 2024 11:49:54 +0100 Subject: [PATCH] DOC: Fix typos in documentation (#2938) --------- Signed-off-by: Stefan Weil --- docs/meta/project-governance.md | 4 ++-- pypdf/_page.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/meta/project-governance.md b/docs/meta/project-governance.md index 53f34b073..51b77d1e3 100644 --- a/docs/meta/project-governance.md +++ b/docs/meta/project-governance.md @@ -19,7 +19,7 @@ capable of splitting, merging, cropping, and transforming the pages of PDF files request, but that is up to the maintainer. Other contributors describe issues, help to ask questions on existing issues to make them easier to answer, participate in discussions, and help to improve the documentation. Contributors - are similar to maintainers, but without technial permissions. + are similar to maintainers, but without technical permissions. * A **user** is a person who imports pypdf into their code. All pypdf users are developers, but not developers who know the internals of pypdf. They only use the public interface of pypdf. They will likely have less knowledge about @@ -111,7 +111,7 @@ An issue is any technical description that aims at bringing pypdf forward: * Performance tickets: pypdf could be faster - let us know about your specific scenario. -Any comment that is in those technial descriptions which is not helping the +Any comment that is in those technical descriptions which is not helping the discussion can be deleted. This is especially true for "me too" comments on bugs or "bump" comments for desired features. People can express this with 👍 / 👎 reactions. diff --git a/pypdf/_page.py b/pypdf/_page.py index 3c794d7a0..e7fb1dc8c 100644 --- a/pypdf/_page.py +++ b/pypdf/_page.py @@ -679,7 +679,7 @@ def images(self) -> VirtualListImages: - An integer Examples: - * `reader.pages[0].images[0]` # return fist image + * `reader.pages[0].images[0]` # return first image * `reader.pages[0].images['/I0']` # return image '/I0' * `reader.pages[0].images['/TP1','/Image1']` # return image '/Image1' within '/TP1' Xobject/Form * `for img in reader.pages[0].images:` # loops through all objects