Correct typos

This commit is contained in:
apeltop 2022-04-09 09:43:18 +09:00
parent 497c0610cd
commit a97dd26389
11 changed files with 11 additions and 11 deletions

View File

@ -90,7 +90,7 @@
/**
* If another page rendering in progress, waits until the rendering is
* finised. Otherwise, executes rendering immediately.
* finished. Otherwise, executes rendering immediately.
*/
function queueRenderPage(num) {
if (pageRendering) {

View File

@ -3161,7 +3161,7 @@ class HighlightAnnotation extends MarkupAnnotation {
// Workaround for cases where there's no /ExtGState-entry directly
// available, e.g. when the appearance stream contains a /XObject of
// the /Form-type, since that causes the highlighting to completely
// obsure the PDF content below it (fixes issue13242.pdf).
// obscure the PDF content below it (fixes issue13242.pdf).
warn("HighlightAnnotation - ignoring built-in appearance stream.");
}
// Default color is yellow in Acrobat Reader

View File

@ -29,7 +29,7 @@ import {
} from "./charsets.js";
import { ExpertEncoding, StandardEncoding } from "./encodings.js";
// Maximum subroutine call depth of type 2 chartrings. Matches OTS.
// Maximum subroutine call depth of type 2 charstrings. Matches OTS.
const MAX_SUBR_NESTING = 10;
/**

View File

@ -436,7 +436,7 @@ class PartialEvaluator {
if (!data) {
return null;
}
// Cache the "raw" standard font data, to avoid fetching it repeateadly
// Cache the "raw" standard font data, to avoid fetching it repeatedly
// (see e.g. issue 11399).
this.standardFontDataCache.set(name, data);

View File

@ -280,7 +280,7 @@ class StructTreePage {
}
/**
* Convert the tree structure into a simplifed object literal that can
* Convert the tree structure into a simplified object literal that can
* be sent to the main thread.
* @returns {Object}
*/

View File

@ -172,7 +172,7 @@ class WorkerMessageHandler {
// Check that at least the first page can be successfully loaded,
// since otherwise the XRef table is definitely not valid.
await pdfManager.ensureDoc("checkFirstPage", [recoveryMode]);
// Check that the last page can be sucessfully loaded, to ensure that
// Check that the last page can be successfully loaded, to ensure that
// `numPages` is correct, and fallback to walking the entire /Pages-tree.
await pdfManager.ensureDoc("checkLastPage", [recoveryMode]);

View File

@ -80,7 +80,7 @@ const TOKEN = {
string: 22,
this: 23,
times: 24,
identifier: 25, // in main statments too
identifier: 25, // in main statements too
/* Main statements */
break: 26,

View File

@ -68,7 +68,7 @@ function parseIndex(index) {
return parseInt(index, 10) || 0;
}
// For now expressions containaing .[...] or .(...) are not
// For now expressions containing .[...] or .(...) are not
// evaluated so don't parse them.
// TODO: implement that stuff and the remove the noExpr param.
function parseExpression(expr, dotDotAllowed, noExpr = true) {

View File

@ -440,7 +440,7 @@ class XFAObject {
/**
* Update the node with properties coming from a prototype and apply
* this function recursivly to all children.
* this function recursively to all children.
*/
[$resolvePrototypes](ids, ancestors = new Set()) {
for (const child of this[_children]) {

View File

@ -42,7 +42,7 @@ const MAX_FONT_SIZE = 100;
const MAX_GROUP_SIZE = 4096;
// Defines the time the `executeOperatorList`-method is going to be executing
// before it stops and shedules a continue of execution.
// before it stops and schedules a continue of execution.
const EXECUTION_TIME = 15; // ms
// Defines the number of steps before checking the execution time.
const EXECUTION_STEPS = 10;

View File

@ -563,7 +563,7 @@ class TilingPattern {
let adjustedY0 = y0;
let adjustedX1 = x1;
let adjustedY1 = y1;
// Some bounding boxes have negative x0/y0 cordinates which will cause the
// Some bounding boxes have negative x0/y0 coordinates which will cause the
// some of the drawing to be off of the canvas. To avoid this shift the
// bounding box over.
if (x0 < 0) {