Skip to content

Commit 0ff6d0b

Browse files
fix: lint issues
1 parent e3a6049 commit 0ff6d0b

File tree

5 files changed

+26
-16
lines changed

5 files changed

+26
-16
lines changed

vale_styles/config/vocabularies/Base/accept.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,14 @@ async
127127
substring
128128
llm
129129
shorteners
130-
matchType
130+
matchType
131+
anonymization
132+
Jira
133+
interdependencies
134+
teardown
135+
protobuf
136+
protoc
137+
Unary
138+
RPCs
139+
viewport
140+
Gradle

versioned_docs/version-3.0.0/concepts/reference/glossary/component-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Testing your code in small parts does not have to be complex. Here are the steps
5656

5757
## Types of Software Component Testing
5858

59-
![Typinge of Component test](/img/glossary/types-of-component-testing.webp)
59+
![Types of Component testing](/img/glossary/types-of-component-testing.webp)
6060

6161
Component testing validates separate parts of a given system before integration. This testing generally consists of unit testing, module testing, and program testing.
6262

@@ -80,7 +80,7 @@ Not entirely, but they are very similar and often confused.
8080
| ------------- | ----------------------------------------- | ---------------------------------------------- |
8181
| What it tests | Smallest parts (functions, methods) | Groups of parts working together (modules) |
8282
| Goal | Check if each small piece works correctly | Check if the combined parts work well together |
83-
| Dependencies | No dependenciestests are isolated | May use stubs or drivers for missing pieces |
83+
| Dependencies | No dependenciestests are isolated | May use stubs or drivers for missing pieces |
8484
| Speed | Very fast | A bit slower, tests bigger parts |
8585
| Example | A sum() function | A payment module |
8686

versioned_docs/version-3.0.0/concepts/reference/glossary/defect-management.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ The **Defect Management Process (DMP)** is a systematic process of detecting, do
4545

4646
### A proper Defect Management Process involves:
4747

48-
- **Detection**Detecting defects during testing.
49-
- **Logging**Recording defects with detailed information.
50-
- **Prioritization**Prioritizing defects based on severity and impact.
51-
- **Assignment**Assigning the defect to developers.
52-
- **Resolution**Fix implementation.
53-
- **Verification**Testing the fix.
48+
- **Detection**Detecting defects during testing.
49+
- **Logging**Recording defects with detailed information.
50+
- **Prioritization**Prioritizing defects based on severity and impact.
51+
- **Assignment**Assigning the defect to developers.
52+
- **Resolution**Fix implementation.
53+
- **Verification**Testing the fix.
5454

5555
## Why is Defect Management Process Important?
5656

@@ -224,7 +224,7 @@ Attach a screenshot of the unresponsive login button and a video showing the ste
224224
- Include extra details that might help developers understand the defect better.
225225

226226
**Example:**
227-
\_The issue seems to occur only when the device is in low battery mode.
227+
The issue seems to occur only when the device is in low battery mode.
228228

229229
### Step 8: Review and Revise
230230

@@ -242,7 +242,7 @@ Good defect management leads to good test management. Platforms like **Keploy**
242242

243243
## Conclusion
244244

245-
In this blog, we covered the fundamentals of **Defect Management in software testing**from defect identification, reporting, tracking, verification, to closure.
245+
In this blog, we covered the fundamentals of **Defect Management in software testing**from defect identification, reporting, tracking, verification, to closure.
246246

247247
By following a disciplined defect management process:
248248

versioned_docs/version-3.0.0/concepts/reference/glossary/grpc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The framework's design philosophy centers around efficiency, type safety, and cr
2626

2727
## Core Architecture and Components
2828

29-
gRPC's architecture consists of several key components that work together to provide a robust communication framework. The Protocol Buffer compiler (protoc) generates code from service definitions, creating strongly-typed interfaces that eliminate runtime errors common in loosely-typed systems.
29+
gRPC`s architecture consists of several key components that work together to provide a robust communication framework. The Protocol Buffer compiler (protoc) generates code from service definitions, creating strongly typed interfaces that eliminate runtime errors common in loosely typed systems.
3030

3131
![gRPC Architecture](/img/glossary/gRPC-architecture.webp)
3232

@@ -40,7 +40,7 @@ The performance benefits of gRPC become apparent in high-throughput scenarios. P
4040

4141
HTTP/2's multiplexing capabilities eliminate the head-of-line blocking issues that plague HTTP/1.1 connections. Multiple requests can be processed simultaneously over a single connection, reducing the overhead associated with establishing multiple TCP connections. This improvement is especially noticeable in microservices architectures where services frequently communicate with each other.
4242

43-
The strongly-typed nature of Protocol Buffers enables compile-time validation, catching errors early in the development process. This type safety extends to the wire format, ensuring that data corruption during transmission is detected and handled appropriately.
43+
The strongly typed nature of Protocol Buffers enables compile-time validation, catching errors early in the development process. This type safety extends to the wire format, ensuring that data corruption during transmission is detected and handled appropriately.
4444

4545
## Communication Patterns
4646

@@ -146,7 +146,7 @@ gRPC uses Protocol Buffers' backward compatibility features. You can add new fie
146146

147147
### Is gRPC suitable for mobile applications?
148148

149-
Absolutely. gRPC's efficient binary protocol and HTTP/2 multiplexing make it ideal for mobile environments where bandwidth and battery life are concerns. The smaller message sizes and reduced connection overhead provide significant benefits.
149+
Absolutely. gRPC`s efficient binary protocol and HTTP/2 multiplexing make it ideal for mobile environments where bandwidth and battery life are concerns. The smaller message sizes and reduced connection overhead provide significant benefits.
150150

151151
### What programming languages support gRPC?
152152

versioned_docs/version-3.0.0/concepts/reference/glossary/junit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ keywords:
1212
- Java
1313
---
1414

15-
Testing remains one of the most critical aspects of software development, yet many developers struggle to implement effective testing strategies. JUnit has emerged as the de facto standard for Java testing, providing a robust framework that enables developers to write reliable, maintainable tests that drive quality throughout the development lifecycle.
15+
Testing remains one of the most critical aspects of software development, yet many developers struggle to implement effective testing strategies. JUnit has emerged as the de-facto standard for Java testing, providing a robust framework that enables developers to write reliable, maintainable tests that drive quality throughout the development lifecycle.
1616

1717
## The Evolution of JUnit
1818

19-
JUnit's journey began in the late 1990s when Kent Beck and Erich Gamma recognized the need for a simple, effective testing framework for Java applications. What started as a lightweight solution has evolved into a comprehensive testing ecosystem that powers millions of applications worldwide.
19+
JUnit's journey began in the late 1990's when Kent Beck and Erich Gamma recognized the need for a simple, effective testing framework for Java applications. What started as a lightweight solution has evolved into a comprehensive testing ecosystem that powers millions of applications worldwide.
2020

2121
The framework's design philosophy centers on simplicity and effectiveness. Rather than overwhelming developers with complex configurations, JUnit provides intuitive annotations and assertions that make test writing straightforward and maintainable. This approach has contributed significantly to its widespread adoption across enterprises of all sizes.
2222

0 commit comments

Comments
 (0)