From 6cd133d2f242d36bd48ddea44acd868f70782d0b Mon Sep 17 00:00:00 2001 From: Gevel Tekens Date: Tue, 4 Feb 2025 23:13:27 +0100 Subject: Fix several typos See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/ --- devdoc/Dillo.txt | 2 +- devdoc/Images.txt | 2 +- devdoc/dw-changes.doc | 2 +- devdoc/dw-fixed-positions.doc | 4 ++-- devdoc/dw-images-and-backgrounds.doc | 4 ++-- devdoc/dw-interrupted-drawing.doc | 2 +- devdoc/dw-layout-views.doc | 2 +- devdoc/dw-layout-widgets.doc | 2 +- devdoc/dw-line-breaking.doc | 10 +++++----- devdoc/dw-miscellaneous.doc | 4 ++-- devdoc/dw-out-of-flow-floats.doc | 6 +++--- devdoc/dw-out-of-flow.doc | 2 +- devdoc/dw-size-request-pos.doc | 2 +- devdoc/dw-stacking-context.doc | 2 +- devdoc/dw-usage.doc | 6 +++--- devdoc/dw-widget-sizes.doc | 2 +- devdoc/lout.doc | 2 +- devdoc/rounding-errors.doc | 2 +- devdoc/uml-legend.doc | 4 ++-- 19 files changed, 31 insertions(+), 31 deletions(-) (limited to 'devdoc') diff --git a/devdoc/Dillo.txt b/devdoc/Dillo.txt index e7f18de7..99e940be 100644 --- a/devdoc/Dillo.txt +++ b/devdoc/Dillo.txt @@ -84,7 +84,7 @@ upon HTTP header arrival. Well, the html parser gets fed, and proper functions are called for each tag (to parse and call the appropriate methods) -and the whole page is contructed in a streamed way. +and the whole page is constructed in a streamed way. Somewhere in the middle of it, resize and repaint functions are activated and idle functions draw to screen what has been processed. diff --git a/devdoc/Images.txt b/devdoc/Images.txt index 62082e48..0f56ec4c 100644 --- a/devdoc/Images.txt +++ b/devdoc/Images.txt @@ -15,7 +15,7 @@ handles it by: associated widget (DwImage). i.e. If 'Image' is the var for the structure, then 'Image->dw' is the widget. - - Requesting the image to be feeded by the cache. + - Requesting the image to be fed by the cache. - Sending some info to the browser interface. * The cache can either request the image data from the net, or diff --git a/devdoc/dw-changes.doc b/devdoc/dw-changes.doc index 7050df9a..0210cf79 100644 --- a/devdoc/dw-changes.doc +++ b/devdoc/dw-changes.doc @@ -51,7 +51,7 @@ Related to the FLTK port, there have been many changes, this is a
  • Instead of border_spacing in the old DwStyle, there are two attributes, dw::core::style::Style::hBorderSpacing and - dw::core::style::Style::vBorderSpacing, since CSS allowes to specify + dw::core::style::Style::vBorderSpacing, since CSS allows to specify two values. Without CSS, both attributes should have the same value.
  • Images are handled differently, see \ref dw-images-and-backgrounds. diff --git a/devdoc/dw-fixed-positions.doc b/devdoc/dw-fixed-positions.doc index d62565ff..f7fcdef7 100644 --- a/devdoc/dw-fixed-positions.doc +++ b/devdoc/dw-fixed-positions.doc @@ -19,7 +19,7 @@ As defined by CSS Idea for tables --------------- -Often, tables have a header, which contains informations necessary to +Often, tables have a header, which contains information necessary to interpret the columns in the table body. For this, HTML defines the elements <thead> and <tbody> [1]. @@ -28,7 +28,7 @@ For large tables, the problem occurs that the table header gets out of the reader's view. In paged media, where a large table covers multiple pages, this is often solved by *repeating* the table header on each page occupied by the table. When using a viewport, a table larger than -the vieport could be displayed like this: +the viewport could be displayed like this: 1. If the top of the table is within the viewport, show the table header at the usual position. diff --git a/devdoc/dw-images-and-backgrounds.doc b/devdoc/dw-images-and-backgrounds.doc index 8f07766a..e58e28cf 100644 --- a/devdoc/dw-images-and-backgrounds.doc +++ b/devdoc/dw-images-and-backgrounds.doc @@ -30,7 +30,7 @@ initiated: - Html_load_image: for embedded images (implemented by dw::Image, which implements dw::core::ImgRenderer); - StyleEngine::apply (search for "case - CSS_PROPERTY_BACKGROUND_IMAGE"): for backgrond images; there are + CSS_PROPERTY_BACKGROUND_IMAGE"): for background images; there are some implementations of dw::core::ImgRenderer within the context of dw::core::style::StyleImage. @@ -214,7 +214,7 @@ dw::Image is only created with type RGB. This leads to several problems: with different background colors. - The dicache only handles background colors, not background images. -The solution is basicly simple: keep alpha support out of dicache; +The solution is basically simple: keep alpha support out of dicache; instead implement RGBA in dw::Image. As it seems, the main problem is alpha support in FLTK/X11. diff --git a/devdoc/dw-interrupted-drawing.doc b/devdoc/dw-interrupted-drawing.doc index c7037666..586665b6 100644 --- a/devdoc/dw-interrupted-drawing.doc +++ b/devdoc/dw-interrupted-drawing.doc @@ -70,7 +70,7 @@ Since 1. #sc-2 is a child of #sc-1, but 2. #fl-1 is a child of the body, and -3. a widget can only draw its descendants (not neccessary children, +3. a widget can only draw its descendants (not necessary children, but drawing siblings is not allowed), #sc-1 cannot be drawn as a whole; instead drawing is **interrupted** diff --git a/devdoc/dw-layout-views.doc b/devdoc/dw-layout-views.doc index d1118489..ec14775e 100644 --- a/devdoc/dw-layout-views.doc +++ b/devdoc/dw-layout-views.doc @@ -11,7 +11,7 @@ Additionally, there is a structure representing common properties of the platform. A platform is typically related to the underlying UI toolkit, but other uses may be thought of. -This design helps to archieve two important goals: +This design helps to achieve two important goals: -More informations about views in general can be found in \ref +More information about views in general can be found in \ref dw-layout-views. @@ -344,7 +344,7 @@ dw::core::Layout::scrollTo. It expects several parameters: diff --git a/devdoc/dw-widget-sizes.doc b/devdoc/dw-widget-sizes.doc index a6fcac4c..6876dee9 100644 --- a/devdoc/dw-widget-sizes.doc +++ b/devdoc/dw-widget-sizes.doc @@ -187,7 +187,7 @@ finished? These rules are important in two circumstances: Generally, the rules defined below are, in case of doubt, rather strict; when changing the rules, loosening is simpler than to tighten -them, since this will make it neccessary to review old code for calls +them, since this will make it necessary to review old code for calls previously allowed but now forbidden. Short recap: diff --git a/devdoc/lout.doc b/devdoc/lout.doc index 4e1503c6..1ddd844e 100644 --- a/devdoc/lout.doc +++ b/devdoc/lout.doc @@ -61,7 +61,7 @@ signals for deletion.

    Debugging

    In debug.hh, there are some some useful macros for debugging messages, -see the file for mor informations. +see the file for mor information.

    Identifying Classes at Runtime

    diff --git a/devdoc/rounding-errors.doc b/devdoc/rounding-errors.doc index a442033e..acf32c64 100644 --- a/devdoc/rounding-errors.doc +++ b/devdoc/rounding-errors.doc @@ -17,7 +17,7 @@ avoided by transforming the formula into \f[y_i = {(\sum_{j=0}^{j=i} x_j) a \over b} - \sum_{j=0}^{j=i-1} y_j\f] -Of corse, when all \f$y_i\f$ are calculated in a sequence, +Of course, when all \f$y_i\f$ are calculated in a sequence, \f$\sum_{j=0}^{j=i} x_j\f$ and \f$\sum_{j=0}^{j=i-1} y_j\f$ can be accumulated in the same loop. Regard this as sample: diff --git a/devdoc/uml-legend.doc b/devdoc/uml-legend.doc index 54004ccd..b367a658 100644 --- a/devdoc/uml-legend.doc +++ b/devdoc/uml-legend.doc @@ -19,7 +19,7 @@ digraph G { \enddot (In most cases, the attributes and operations are left away, for -better readibility. Just click on it, to get to the detailed +better readability. Just click on it, to get to the detailed description.) Of course, in C++, there are no interfaces, but here, we call a class, @@ -42,7 +42,7 @@ digraph G {

    Objects

    -In some cases, an examle for a concrete constellation of objects is +In some cases, an example for a concrete constellation of objects is shown. An object is represented by a box containing a name and the class, separated by a colon. -- cgit v1.2.3