Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit 0f26436

Browse files
Fixed typos (#328)
1 parent a4cf412 commit 0f26436

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/performance/reduce-reconciliation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
In all likelihood, the primary source of performance gains for your app will come from reducing the amount of work that Roact's reconcilation process requires. This is accomplished by:
1+
In all likelihood, the primary source of performance gains for your app will come from reducing the amount of work that Roact's reconciliation process requires. This is accomplished by:
22

33
* Indicating to Roact that some reconciliation work can be skipped
44
* Making sure your elements only change in ways you intended

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ nav:
2626
- Context: advanced/context.md
2727
- Performance Optimization:
2828
- Overview: performance/overview.md
29-
- Reduce Reconcilation: performance/reduce-reconciliation.md
29+
- Reduce Reconciliation: performance/reduce-reconciliation.md
3030
- API Reference: api-reference.md
3131

3232
extra_css:

src/createElement.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local Type = require(script.Parent.Type)
66
local config = require(script.Parent.GlobalConfig).get()
77

88
local multipleChildrenMessage = [[
9-
The prop `Roact.Children` was defined but was overriden by the third parameter to createElement!
9+
The prop `Roact.Children` was defined but was overridden by the third parameter to createElement!
1010
This can happen when a component passes props through to a child element but also uses the `children` argument:
1111
1212
Roact.createElement("Frame", passedProps, {

src/createElement.spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ return function()
8181

8282
it("should warn once if children is specified in two different ways", function()
8383
local logInfo = Logging.capture(function()
84-
-- Using a loop here to ensure that multiple occurences of the same
84+
-- Using a loop here to ensure that multiple occurrences of the same
8585
-- warning only cause output once.
8686
for _ = 1, 2 do
8787
createElement("Frame", {

0 commit comments

Comments
 (0)