From 76d60854bdb893dfaf447d2b901520976cf9b08c Mon Sep 17 00:00:00 2001
From: Carlos Torrecillas <carlos.torrecillas@just-quality.com>
Date: Thu, 13 Oct 2022 12:21:44 +0200
Subject: [PATCH] docs: removing ServerTransferStateModule as is deprecated

Since the latest universal libraries state that ServerTransferStateModule is being deprecated and apparently does not need to be used, it can be removed from the docs and also is not present in the sample universal code available to be downloaded.
---
 docs/transfer-http.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/transfer-http.md b/docs/transfer-http.md
index 59dd5e5373..0810eee73e 100644
--- a/docs/transfer-http.md
+++ b/docs/transfer-http.md
@@ -26,17 +26,17 @@ import {TransferHttpCacheModule} from '@nguniversal/common';
 export class AppBrowserModule() {}
 ```
 
-Then, import `ServerTransferStateModule` in your Server module.
+You don't have to import anything extra in your AppServerModule.
 
 ```ts
 import { NgModule } from '@angular/core';
-import { ServerModule, ServerTransferStateModule } from '@angular/platform-server';
+import { ServerModule } from '@angular/platform-server';
 
 import { AppModule } from './app.module';
 import { AppComponent } from './app.component';
 
 @NgModule({
-  imports: [AppModule, ServerModule, ServerTransferStateModule],
+  imports: [AppModule, ServerModule],
   bootstrap: [AppComponent],
 })
 export class AppServerModule {}