Skip to content

Commit

Permalink
deploy: 42a3607
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Dec 5, 2023
1 parent c3d3a53 commit 425c588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/3.x/bootique-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ <h3 id="providers_and_authloading">2.6. Module Providers and Auto-Loading</h3>
<pre class="highlight"><code class="language-java java" data-lang="java">public class MyModuleProvider implements BQModuleProvider {

@Override
public ModuleCrate moduleCrate() {
return ModuleCrate.of(new MyModule()).provider(this).build();
public BQModule module() {
return new MyModule();
}
}</code></pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/3.x/getting-started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ <h2 id="_hello_world_in_bootique">1. Hello World in Bootique</h2>
<pre class="highlight"><code class="language-java java" data-lang="java">package com.foo;

import io.bootique.Bootique;
import io.bootique.di.BQModule;
import io.bootique.BQModule;
import io.bootique.jersey.JerseyModule;

public class Application {
Expand Down

0 comments on commit 425c588

Please sign in to comment.