From 65d96761641af848ef823ad858d2ca9175dc75b0 Mon Sep 17 00:00:00 2001 From: Hawstein Date: Sun, 31 Jul 2016 02:06:25 +0800 Subject: [PATCH] =doc fix typo for migration guide (#21075) --- .../rst/scala/http/migration-guide-2.4.x-experimental.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-docs/rst/scala/http/migration-guide-2.4.x-experimental.rst b/akka-docs/rst/scala/http/migration-guide-2.4.x-experimental.rst index 38961fbd10..fd7d36e05b 100644 --- a/akka-docs/rst/scala/http/migration-guide-2.4.x-experimental.rst +++ b/akka-docs/rst/scala/http/migration-guide-2.4.x-experimental.rst @@ -34,9 +34,9 @@ We have aligned the package structure of the Java based DSL with the Scala based and moved classes that were in the wrong or unexpected places around a bit. This means that Java DSL users must update their imports as follows: -Classes dealing with unmarshalling and unmarshalling used to reside in ``akka.http.javadsl.server`` +Classes dealing with unmarshalling and marshalling used to reside in ``akka.http.javadsl.server``, but are now available from the packages ``akka.http.javadsl.unmarshalling`` and ``akka.http.javadsl.marshalling``. -``akka.http.javadsl.server.Coder`` is now ``akka.http.javadsl.coding.Coder`` +``akka.http.javadsl.server.Coder`` is now ``akka.http.javadsl.coding.Coder``. -``akka.http.javadsl.server.RegexConverters`` is now ``akka.http.javadsl.common.RegexConverters`` +``akka.http.javadsl.server.RegexConverters`` is now ``akka.http.javadsl.common.RegexConverters``.