Skip to content

Commit d278dcf

Browse files
committed
Tweak wording for doc
1 parent 0ac4cad commit d278dcf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs-devsite/auth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Firebase Authentication
150150
| --- | --- |
151151
| [ActionCodeOperation](./auth.md#actioncodeoperation) | An enumeration of the possible email action types. |
152152
| [AuthErrorCodes](./auth.md#autherrorcodes) | A map of potential <code>Auth</code> error codes, for easier comparison with errors thrown by the SDK. |
153-
| [browserCookiePersistence](./auth.md#browsercookiepersistence) | <b><i>(Public Preview)</i></b> An implementation of [Persistence](./auth.persistence.md#persistence_interface) of type 'COOKIE', for use on the client-side in applications leveraging hybrid rendering and middleware. \* |
153+
| [browserCookiePersistence](./auth.md#browsercookiepersistence) | <b><i>(Public Preview)</i></b> An implementation of [Persistence](./auth.persistence.md#persistence_interface) of type 'COOKIE', for use on the client-side in applications leveraging hybrid rendering and middleware. |
154154
| [browserLocalPersistence](./auth.md#browserlocalpersistence) | An implementation of [Persistence](./auth.persistence.md#persistence_interface) of type <code>LOCAL</code> using <code>localStorage</code> for the underlying storage. |
155155
| [browserPopupRedirectResolver](./auth.md#browserpopupredirectresolver) | An implementation of [PopupRedirectResolver](./auth.popupredirectresolver.md#popupredirectresolver_interface) suitable for browser based applications. |
156156
| [browserSessionPersistence](./auth.md#browsersessionpersistence) | An implementation of [Persistence](./auth.persistence.md#persistence_interface) of <code>SESSION</code> using <code>sessionStorage</code> for the underlying storage. |
@@ -1966,9 +1966,9 @@ AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY: {
19661966
> This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
19671967
>
19681968
1969-
An implementation of [Persistence](./auth.persistence.md#persistence_interface) of type 'COOKIE', for use on the client-side in applications leveraging hybrid rendering and middleware. \*
1969+
An implementation of [Persistence](./auth.persistence.md#persistence_interface) of type 'COOKIE', for use on the client-side in applications leveraging hybrid rendering and middleware.
19701970

1971-
This persistence method requires companion middleware to function, such as that provided by for NextJS.
1971+
This persistence method requires companion middleware to function, such as that provided by [ReactFire](https://firebaseopensource.com/projects/firebaseextended/reactfire/) for NextJS.
19721972

19731973
<b>Signature:</b>
19741974

packages/auth/src/platform_browser/persistence/cookie_storage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ export class CookiePersistence implements PersistenceInternal {
145145
/**
146146
* An implementation of {@link Persistence} of type 'COOKIE', for use on the client-side in
147147
* applications leveraging hybrid rendering and middleware.
148-
* *
148+
*
149149
* @remarks This persistence method requires companion middleware to function, such as that provided
150-
* by {@link https://firebaseopensource.com/projects/firebaseextended/reactfire/ ReactFire} for
150+
* by {@link https://firebaseopensource.com/projects/firebaseextended/reactfire/ | ReactFire} for
151151
* NextJS.
152152
* @beta
153153
*/

0 commit comments

Comments
 (0)