Skip to content

Commit

Permalink
Fix typo in example code (helidon-io#8945)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Quinn <[email protected]>
  • Loading branch information
tjquinno authored Jul 10, 2024
1 parent bea13fd commit 8b793ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/se/metrics/micrometer.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////

Copyright (c) 2021, 2023 Oracle and/or its affiliates.
Copyright (c) 2021, 2024 Oracle and/or its affiliates.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -107,7 +107,7 @@ public class MyService implements Service {
private final Counter requestCounter;
public MyService(MicrometerMeterRegistry registry) {
public MyService(MeterRegistry registry) {
requestCounter = registry.counter("allRequests"); // <1>
}
Expand Down

0 comments on commit 8b793ec

Please sign in to comment.