소스 검색

Fix typos in RSocket reference docs

Eleftheria Stein 4 년 전
부모
커밋
7f81b3fead
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      docs/manual/src/docs/asciidoc/_includes/reactive/rsocket.adoc

+ 2 - 2
docs/manual/src/docs/asciidoc/_includes/reactive/rsocket.adoc

@@ -215,7 +215,7 @@ An example configuration can be found below:
 [[source,java]]
 ----
 rsocket
-	.authorizePayload(authorize ->
+	.authorizePayload(authz ->
 		authz
 			.setup().hasRole("SETUP") // <1>
 			.route("fetch.profile.me").authenticated() // <2>
@@ -225,7 +225,7 @@ rsocket
 				.access((authentication, context) -> checkFriends(authentication, context))
 			.anyRequest().authenticated() // <5>
 			.anyExchange().permitAll() // <6>
-	)
+	);
 ----
 <1> Setting up a connection requires the authority `ROLE_SETUP`
 <2> If the route is `fetch.profile.me` authorization only requires the user be authenticated