Skip to content

Commit 9e515fc

Browse files
danielnixonsjrd
authored andcommitted
Typo fixes.
1 parent 35bdc67 commit 9e515fc

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

src/main/scala/org/scalajs/dom/css.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.scalajs.dom
22

33
/**
4-
* Short aliasas of all the dom.CSSThing classes
4+
* Short aliases of all the dom.CSSThing classes
55
*/
66
object css {
77
type FontFaceRule = raw.CSSFontFaceRule

src/main/scala/org/scalajs/dom/html.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.scalajs.dom
22

33
/**
4-
* Short aliasas of all the dom.HTMLThing classes
4+
* Short aliases of all the dom.HTMLThing classes
55
*/
66
object html {
77
type Anchor = raw.HTMLAnchorElement

src/main/scala/org/scalajs/dom/idb.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.scalajs.dom
22

33
/**
4-
* Short aliasas of all the dom.IDBThing classes
4+
* Short aliases of all the dom.IDBThing classes
55
*/
66
object idb {
77
type Cursor = raw.IDBCursor

src/main/scala/org/scalajs/dom/raw/WebWorkers.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ trait WorkerLocation extends js.Object {
353353
* serialization of the origin of the represented URL, that is, for http and
354354
* https, the scheme followed by '://', followed by the domain, followed by
355355
* ':', followed by the port (the default port, 80 and 443 respectively,
356-
* if explicitely specified). For URL using file: scheme, the value is browser
356+
* if explicitly specified). For URL using file: scheme, the value is browser
357357
* dependant.
358358
*
359359
* MDN

src/main/scala/org/scalajs/dom/raw/lib.scala

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ class Performance extends js.Object {
396396
def setResourceTimingBufferSize(maxSize: Int): Unit = js.native
397397

398398
/**
399-
* Returns a DOMHighResTimeStamp representing the amount of miliseconds elapsed
399+
* Returns a DOMHighResTimeStamp representing the amount of milliseconds elapsed
400400
* since the start of the navigation, as give by PerformanceTiming.navigationStart
401401
* to the call of the method.
402402
*
@@ -1256,15 +1256,15 @@ trait ModifierKeyEvent extends js.Object {
12561256

12571257
/**
12581258
* The metaKey property indicates if the meta key was pressed (true) or not (false)
1259-
* when the event occured.
1259+
* when the event occurred.
12601260
*
12611261
* MDN
12621262
*/
12631263
def metaKey: Boolean = js.native
12641264

12651265
/**
12661266
* The altKey property indicates if the alt key was pressed (true) or not (false) when
1267-
* the event occured.
1267+
* the event occurred.
12681268
*
12691269
* MDN
12701270
*/
@@ -4464,7 +4464,7 @@ class PerformanceTiming extends js.Object {
44644464

44654465
/**
44664466
* The PerformanceTiming.redirectStart read-only property returns an unsigned
4467-
* long long representing the moment, in miliseconds since the UNIX epoch, the first
4467+
* long long representing the moment, in milliseconds since the UNIX epoch, the first
44684468
* HTTP redirect starts. If there is no redirect, or if one of the redirect is not of the
44694469
* same origin, the value returned is 0.
44704470
*
@@ -4474,7 +4474,7 @@ class PerformanceTiming extends js.Object {
44744474

44754475
/**
44764476
* The PerformanceTiming.domainLookupEnd read-only property returns an unsigned
4477-
* long long representing the moment, in miliseconds since the UNIX epoch, where the
4477+
* long long representing the moment, in milliseconds since the UNIX epoch, where the
44784478
* domain lookup is finished. If a persistent connection is used, or the information
44794479
* is stored in a cache or a local resource, the value will be the same as
44804480
* PerformanceTiming.fetchStart.
@@ -4485,7 +4485,7 @@ class PerformanceTiming extends js.Object {
44854485

44864486
/**
44874487
* The PerformanceTiming.responseStart read-only property returns an unsigned
4488-
* long long representing the moment, in miliseconds since the UNIX epoch, when the
4488+
* long long representing the moment, in milliseconds since the UNIX epoch, when the
44894489
* browser received the first byte of the response, from the server from a cache, of
44904490
* from a local resource.
44914491
*
@@ -4495,7 +4495,7 @@ class PerformanceTiming extends js.Object {
44954495

44964496
/**
44974497
* The PerformanceTiming.domComplete read-only property returns an unsigned long
4498-
* long representing the moment, in miliseconds since the UNIX epoch, when the parser
4498+
* long representing the moment, in milliseconds since the UNIX epoch, when the parser
44994499
* finished its work on the main document, that is when its Document.readyState
45004500
* changes to 'complete' and the corresponding readystatechange event is thrown.
45014501
*
@@ -4505,7 +4505,7 @@ class PerformanceTiming extends js.Object {
45054505

45064506
/**
45074507
* The PerformanceTiming.domainLookupStart read-only property returns an
4508-
* unsigned long long representing the moment, in miliseconds since the UNIX epoch,
4508+
* unsigned long long representing the moment, in milliseconds since the UNIX epoch,
45094509
* where the domain lookup starts. If a persistent connection is used, or the
45104510
* information is stored in a cache or a local resource, the value will be the same as
45114511
* PerformanceTiming.fetchStart.
@@ -4516,7 +4516,7 @@ class PerformanceTiming extends js.Object {
45164516

45174517
/**
45184518
* The PerformanceTiming.loadEventStart read-only property returns an unsigned
4519-
* long long representing the moment, in miliseconds since the UNIX epoch, when the
4519+
* long long representing the moment, in milliseconds since the UNIX epoch, when the
45204520
* load event was sent for the current document. If this event has not yet been sent, it
45214521
* returns 0.
45224522
*
@@ -4526,7 +4526,7 @@ class PerformanceTiming extends js.Object {
45264526

45274527
/**
45284528
* The PerformanceTiming.unloadEventEnd read-only property returns an unsigned
4529-
* long long representing the moment, in miliseconds since the UNIX epoch, the unload
4529+
* long long representing the moment, in milliseconds since the UNIX epoch, the unload
45304530
* event handler finishes. If there is no previous document, or if the previous
45314531
* document, or one of the needed redirects, is not of the same origin, the value
45324532
* returned is 0.
@@ -4537,7 +4537,7 @@ class PerformanceTiming extends js.Object {
45374537

45384538
/**
45394539
* The PerformanceTiming.fetchStart read-only property returns an unsigned long
4540-
* long representing the moment, in miliseconds since the UNIX epoch, the browser is
4540+
* long representing the moment, in milliseconds since the UNIX epoch, the browser is
45414541
* ready to fetch the document using an HTTP request. This moment is before the check to
45424542
* any application cache.
45434543
*
@@ -4547,7 +4547,7 @@ class PerformanceTiming extends js.Object {
45474547

45484548
/**
45494549
* The PerformanceTiming.requestStart read-only property returns an unsigned
4550-
* long long representing the moment, in miliseconds since the UNIX epoch, when the
4550+
* long long representing the moment, in milliseconds since the UNIX epoch, when the
45514551
* browser sent the request to obtain the actual document, from the server or from a
45524552
* cache. If the transport layer fails after the start of the request and the
45534553
* connection is reopened, this property will be set to the time corresponding to the
@@ -4559,7 +4559,7 @@ class PerformanceTiming extends js.Object {
45594559

45604560
/**
45614561
* The PerformanceTiming.domInteractive read-only property returns an unsigned
4562-
* long long representing the moment, in miliseconds since the UNIX epoch, when the
4562+
* long long representing the moment, in milliseconds since the UNIX epoch, when the
45634563
* parser finished its work on the main document, that is when its
45644564
* Document.readyState changes to 'interactive' and the corresponding
45654565
* readystatechange event is thrown.
@@ -4570,7 +4570,7 @@ class PerformanceTiming extends js.Object {
45704570

45714571
/**
45724572
* The PerformanceTiming.navigationStart read-only property returns an unsigned
4573-
* long long representing the moment, in miliseconds since the UNIX epoch, right
4573+
* long long representing the moment, in milliseconds since the UNIX epoch, right
45744574
* after the prompt for unload terminates on the previous document in the same
45754575
* browsing context. If there is no previous document, this value will be the same as
45764576
* PerformanceTiming.fetchStart.
@@ -4581,7 +4581,7 @@ class PerformanceTiming extends js.Object {
45814581

45824582
/**
45834583
* The PerformanceTiming.connectEnd read-only property returns an unsigned long
4584-
* long representing the moment, in miliseconds since the UNIX epoch, where the
4584+
* long representing the moment, in milliseconds since the UNIX epoch, where the
45854585
* connection is opened network. If the transport layer reports an error and the
45864586
* connection establishment is started again, the last connection establisment end
45874587
* time is given. If a persistent connection is used, the value will be the same as
@@ -4594,7 +4594,7 @@ class PerformanceTiming extends js.Object {
45944594

45954595
/**
45964596
* The PerformanceTiming.loadEventEnd read-only property returns an unsigned
4597-
* long long representing the moment, in miliseconds since the UNIX epoch, when the
4597+
* long long representing the moment, in milliseconds since the UNIX epoch, when the
45984598
* load event handler terminated, that is when the load event is completed. If this
45994599
* event has not yet been sent, or is not yet completed, it returns 0.
46004600
*
@@ -4604,7 +4604,7 @@ class PerformanceTiming extends js.Object {
46044604

46054605
/**
46064606
* The PerformanceTiming.connectStart read-only property returns an unsigned
4607-
* long long representing the moment, in miliseconds since the UNIX epoch, where the
4607+
* long long representing the moment, in milliseconds since the UNIX epoch, where the
46084608
* request to open a connection is sent to the network. If the transport layer reports
46094609
* an error and the connection establishment is started again, the last connection
46104610
* establisment start time is given. If a persistent connection is used, the value
@@ -4616,7 +4616,7 @@ class PerformanceTiming extends js.Object {
46164616

46174617
/**
46184618
* The PerformanceTiming.responseEnd read-only property returns an unsigned long
4619-
* long representing the moment, in miliseconds since the UNIX epoch, when the
4619+
* long representing the moment, in milliseconds since the UNIX epoch, when the
46204620
* browser received the last byte of the response, or when the connection is closed if
46214621
* this happened first, from the server from a cache, of from a local resource.
46224622
*
@@ -4626,7 +4626,7 @@ class PerformanceTiming extends js.Object {
46264626

46274627
/**
46284628
* The PerformanceTiming.domLoading read-only property returns an unsigned long
4629-
* long representing the moment, in miliseconds since the UNIX epoch, when the parser
4629+
* long representing the moment, in milliseconds since the UNIX epoch, when the parser
46304630
* started its work, that is when its Document.readyState changes to 'loading' and
46314631
* the corresponding readystatechange event is thrown.
46324632
*
@@ -4636,7 +4636,7 @@ class PerformanceTiming extends js.Object {
46364636

46374637
/**
46384638
* The PerformanceTiming.redirectEnd read-only property returns an unsigned long
4639-
* long representing the moment, in miliseconds since the UNIX epoch, the last HTTP
4639+
* long representing the moment, in milliseconds since the UNIX epoch, the last HTTP
46404640
* redirect is completed, that is when the last byte of the HTTP response has been
46414641
* received. If there is no redirect, or if one of the redirect is not of the same origin,
46424642
* the value returned is 0.
@@ -4647,7 +4647,7 @@ class PerformanceTiming extends js.Object {
46474647

46484648
/**
46494649
* The PerformanceTiming.unloadEventStart read-only property returns an
4650-
* unsigned long long representing the moment, in miliseconds since the UNIX epoch,
4650+
* unsigned long long representing the moment, in milliseconds since the UNIX epoch,
46514651
* the unload event has been thrown. If there is no previous document, or if the
46524652
* previous document, or one of the needed redirects, is not of the same origin, the
46534653
* value returned is 0.
@@ -4658,7 +4658,7 @@ class PerformanceTiming extends js.Object {
46584658

46594659
/**
46604660
* The PerformanceTiming.domContentLoadedEventStart read-only property
4661-
* returns an unsigned long long representing the moment, in miliseconds since the
4661+
* returns an unsigned long long representing the moment, in milliseconds since the
46624662
* UNIX epoch, right before the parser sent the DOMContentLoaded event, that is right
46634663
* after all the scripts that need to be executed right after parsing has been
46644664
* executed.
@@ -4669,7 +4669,7 @@ class PerformanceTiming extends js.Object {
46694669

46704670
/**
46714671
* The PerformanceTiming.domContentLoadedEventEnd read-only property returns
4672-
* an unsigned long long representing the moment, in miliseconds since the UNIX
4672+
* an unsigned long long representing the moment, in milliseconds since the UNIX
46734673
* epoch, right after all the scripts that need to be executed as soon as possible, in
46744674
* order or not, has been executed.
46754675
*
@@ -4823,7 +4823,7 @@ trait Location extends js.Object {
48234823
* The origin read-only property is a String containing the Unicode serialization of the
48244824
* origin of the represented URL, that is, for http and https, the scheme followed by
48254825
* '://', followed by the domain, followed by ':', followed by the port (the default
4826-
* port, 80 and 443 respectively, if explicitely specified). For URL using file: scheme,
4826+
* port, 80 and 443 respectively, if explicitly specified). For URL using file: scheme,
48274827
* the value is browser dependant.
48284828
*
48294829
* This property also does not exist consistently on IE, even as new as IE11, hence it must

src/main/scala/org/scalajs/dom/svg.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.scalajs.dom
22

33
/**
4-
* Short aliasas of all the dom.SVGThing classes
4+
* Short aliases of all the dom.SVGThing classes
55
*/
66
object svg {
77
type A = raw.SVGAElement

src/main/scala/org/scalajs/dom/webgl.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.scalajs.dom
22

33
/**
4-
* Short aliasas of all the dom.WebGLThing classes
4+
* Short aliases of all the dom.WebGLThing classes
55
*/
66
object webgl {
77
type ActiveInfo = raw.WebGLActiveInfo

0 commit comments

Comments
 (0)