Skip to content

Correct typos #14764

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/learning/prevnext.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ <h1>'Previous/Next' example</h1>

/**
* 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) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/annotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/core/cff_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/core/evaluator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion src/core/struct_tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down
2 changes: 1 addition & 1 deletion src/core/xfa/formcalc_lexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/core/xfa/som.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/xfa/xfa_object.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
2 changes: 1 addition & 1 deletion src/display/canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/display/pattern_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down