Skip to content

Commit

Permalink
Update docs. Fixes gh-4302.
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaMaciaszek committed Sep 6, 2024
1 parent c8aa498 commit a0329a8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/modules/ROOT/pages/spring-cloud-netflix.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ public class Application {
}
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
SpringApplication.run(CustomerServiceTestApplication.class, args);
}
}
----
Expand Down Expand Up @@ -411,8 +412,9 @@ The following example shows a minimal Eureka server:
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
SpringApplication.run(CustomerServiceTestApplication.class, args);
}
}
----
Expand Down

0 comments on commit a0329a8

Please sign in to comment.