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 c827582 commit 945352e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -2891,7 +2891,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 @@ -81,8 +81,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 @@ -81,8 +81,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 945352e

Please sign in to comment.