Skip to content

Commit

Permalink
fix comment casing
Browse files Browse the repository at this point in the history
  • Loading branch information
gnoff committed Apr 20, 2022
1 parent cfc078d commit 851dde2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -2922,7 +2922,7 @@ describe('ReactDOMFizzServer', () => {
</div>,
);

// the client app is rendered with an intentionally incorrect text. The still Suspended component causes
// The client app is rendered with an intentionally incorrect text. The still Suspended component causes
// hydration to fail silently (allowing for cache warming but otherwise skipping this boundary) until it
// resolves.
const [ClientApp, clientResolve] = makeApp();
Expand Down
Expand Up @@ -85,8 +85,8 @@ let hydrationParentFiber: null | Fiber = null;
let nextHydratableInstance: null | HydratableInstance = null;
let isHydrating: boolean = false;

// this flag allows for warning supression when we expect there to be mismatches due to
// earlier mismatches or a suspended fiber.
// This flag allows for warning supression when we expect there to be mismatches
// due to earlier mismatches or a suspended fiber.
let didSuspendOrErrorDEV: boolean = false;

// Hydration errors that were thrown inside this boundary
Expand Down
Expand Up @@ -85,8 +85,8 @@ let hydrationParentFiber: null | Fiber = null;
let nextHydratableInstance: null | HydratableInstance = null;
let isHydrating: boolean = false;

// this flag allows for warning supression when we expect there to be mismatches due to
// earlier mismatches or a suspended fiber.
// This flag allows for warning supression when we expect there to be mismatches
// due to earlier mismatches or a suspended fiber.
let didSuspendOrErrorDEV: boolean = false;

// Hydration errors that were thrown inside this boundary
Expand Down

0 comments on commit 851dde2

Please sign in to comment.