From 949c635d4459109c813bfc3cbc63c281d902f192 Mon Sep 17 00:00:00 2001 From: Manoel Campos da Silva Filho Date: Thu, 24 Oct 2019 06:40:10 -0300 Subject: [PATCH] Update controllers-rest.html Renames CustomerController.view to Customercontroller.show at the 1st section. That makes the name of the method consistent with the other examples on the page. --- vraptor-site/content/en/docs/controllers-rest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vraptor-site/content/en/docs/controllers-rest.html b/vraptor-site/content/en/docs/controllers-rest.html index 212e2b2a5..aabe69fae 100644 --- a/vraptor-site/content/en/docs/controllers-rest.html +++ b/vraptor-site/content/en/docs/controllers-rest.html @@ -26,7 +26,7 @@ return ... } - public Customer view(Customer customer) { + public Customer show(Customer customer) { return ... }