Skip to content

Commit

Permalink
[CI] Add fix:text script, and rule for bytecode spelling (#4564)
Browse files Browse the repository at this point in the history
Co-authored-by: Phillip Carter <[email protected]>
  • Loading branch information
chalin and cartermp authored May 31, 2024
1 parent e2bac73 commit 4c52c80
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion .cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ words:
- autoloader
- autoloading
- backoff
- bytecode
- caml
- cartservice
- cassandra
Expand Down
3 changes: 2 additions & 1 deletion .textlintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ rules:
- ['3rd[- ]party', third-party]
- ['auto[- ]c(onfigur)(es?|ations?)', 'autoc$1$2'] # cspell:ignore autoc ations onfigur
- ['back[- ]end(s)?', 'backend$1']
- ['bugfix', 'bug fix']
- [bugfix, bug fix]
- [byte code, bytecode]
- [cpp, C++]
- # dotnet|.net -> .NET, but NOT for strings like:
# - File extension: file.net
Expand Down
2 changes: 1 addition & 1 deletion content/en/blog/2023/spring-native/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Image applications. Read on to learn more!
## A history of the last months

The OpenTelemetry Spring Boot Starter allows to add OpenTelemetry to your
application without byte code instrumentation. The OpenTelemetry Java
application without bytecode instrumentation. The OpenTelemetry Java
contributors have used this to instrument Spring Boot Native Images. By adding
the starter dependency to your project, you will benefit from an OTLP exports of
logs (added the last months), spans and metrics, with an auto-instrumentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can use two options to instrument
OpenTelemetry.

1. The default choice for instrumenting Spring Boot applications is the
[**OpenTelemetry Java agent**](../agent) with byte code instrumentation:
[**OpenTelemetry Java agent**](../agent) with bytecode instrumentation:
- **More out of the box instrumentation** than the OpenTelemetry starter
2. The **OpenTelemetry Spring Boot starter** can help you with:
- **Spring Boot Native image** applications for which the OpenTelemetry Java
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"fix:markdown": "npm run check:markdown -- --fix",
"fix:refcache": "npm run check:links",
"fix:submodules": "npm run _sync",
"fix:text": "npm run check:text -- --fix",
"fix": "npm run fix:all",
"format": "npm run _check:format -- --write",
"get:submodule": "npm run _get:${GET:-submodule}",
Expand Down

0 comments on commit 4c52c80

Please sign in to comment.