Fix markdown lint errors
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<!-- markdownlint-disable-next-line MD041 -->
|
||||
<!-- markdownlint-disable-next-line first-line-h1 -->
|
||||
**Process impact:** This file as a dictionary of standard terms defined
|
||||
as they are used across projects. Individual projects should not need to
|
||||
edit this file. Writing out the definitions of terms and acronyms here
|
||||
@@ -6,11 +6,12 @@ helps keep other documents more concise and easy to edit. Check the
|
||||
[ReadySET glossary](http://readyset.tigris.org/templates/glossary-std.html) for
|
||||
updates.
|
||||
|
||||
<!-- markdownlint-disable-next-line link-fragments -->
|
||||
Jump to: [General](#general-terms) | [Computer science & technology](#computer-science-and-technology-terms) | [Process](#process-terms) | [Software development tools](#development-tool-terms) | [Requirements](#requirements-terms) | [Design](#design-terms) | [Design goals terms](#desigD-DIAGRAMn-goals-terms) | [QA terms](#qa-terms) | [QA goals terms](#qa-goals-terms) | [Additional terms](#additional-standard-terms)| [Project terms](Glossary)
|
||||
|
||||
### General Terms
|
||||
|
||||
##### Chipping away
|
||||
#### Chipping away
|
||||
|
||||
The process of removing sample text from templates when that text
|
||||
does not apply to the current project. Often some of the sample text
|
||||
@@ -82,9 +83,9 @@ communications such as [SOAP](#soap) messages.
|
||||
|
||||
##### ::SOAP
|
||||
|
||||
SOAP (Simple Object Access Protocol) is the message format used by
|
||||
standard web services. It entails sending an XML document to a
|
||||
server in order to invoke an operation on the server-side.
|
||||
SOAP (Simple Object Access Protocol) is the message format used by
|
||||
standard web services. It entails sending an XML document to a
|
||||
server in order to invoke an operation on the server-side.
|
||||
[More information on SOAP](http://directory.google.com/Top/Computers/Programming/Internet/Web_Services/SOAP/?tc=1).
|
||||
|
||||
### Process Terms
|
||||
@@ -138,7 +139,7 @@ than "10.1" or "11".
|
||||
|
||||
##### Release Number
|
||||
|
||||
The term "release number" by itself refers to an
|
||||
The term "release number" by itself refers to an
|
||||
[external release number](#external_release_number). Users normally are not aware
|
||||
of the existence of any internal release numbers.
|
||||
|
||||
@@ -191,7 +192,7 @@ many different ways as part of many different use cases.
|
||||
|
||||
The main part of a use case is a set of steps that give an example
|
||||
of how an [actor](#actor) can use the product to succeed at
|
||||
a goal. These steps are called the "Main success scenario", and they
|
||||
a goal. These steps are called the "Main success scenario", and they
|
||||
include both user intentions and system responses. One use case may
|
||||
show how the actor uses several features to accomplish a goal.
|
||||
|
||||
@@ -225,7 +226,7 @@ Developers can understand this design and correctly implement it.
|
||||
This design divides the implementation into components or aspects
|
||||
that can correspond to reasonable implementation tasks.
|
||||
|
||||
#### Modularity
|
||||
#### Modularity
|
||||
|
||||
Concerns are clearly separated so that the impact of most design
|
||||
changes would be limited to only one or a few modules.
|
||||
@@ -323,18 +324,18 @@ this system.
|
||||
|
||||
#### Bug
|
||||
|
||||
*n.* **Deprecated** since 1991. See [defect](#defect).
|
||||
_n._ **Deprecated** since 1991. See [defect](#defect).
|
||||
|
||||
#### Error
|
||||
|
||||
*v.* A mistaken thought in the developer's mind. Often caused by
|
||||
_v._ A mistaken thought in the developer's mind. Often caused by
|
||||
miscommunication or bad assumptions. Errors can create
|
||||
[defects](#defect). E.g., a developer might erroneously think that
|
||||
the square root of -4 is -2.
|
||||
|
||||
#### Defect
|
||||
|
||||
*n.* The result of the developer's [error](#error) embodied in the
|
||||
_n._ The result of the developer's [error](#error) embodied in the
|
||||
product source code, initial data, or documents. E.g., a square root
|
||||
function which allows negative numbers as arguments is defective.
|
||||
Defects can be removed by changing the source code, initial data,
|
||||
@@ -342,7 +343,7 @@ or document.
|
||||
|
||||
#### Fault
|
||||
|
||||
*n.* The execution of defective code. E.g., if a certain input is
|
||||
_n._ The execution of defective code. E.g., if a certain input is
|
||||
provided to defective code, it may cause an exception, or go into an
|
||||
infinite loop, or store an incorrect value in an internal variable.
|
||||
A fault is not normally visible to users, only the
|
||||
@@ -350,7 +351,7 @@ A fault is not normally visible to users, only the
|
||||
|
||||
#### Failure
|
||||
|
||||
*n.* The user-visible result of a [fault](#fault). E.g., an error
|
||||
_n._ The user-visible result of a [fault](#fault). E.g., an error
|
||||
message or an incorrect result. This is evidence that can be
|
||||
reported in a defect report. Developers use failure evidence during
|
||||
debugging to eventually find and remove [defects](#defect).
|
||||
@@ -391,6 +392,7 @@ D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
|
||||
#### Usability > Understandability and Readability
|
||||
|
||||
Users need to understand the system to use it. The basic metaphor
|
||||
@@ -447,6 +449,7 @@ D-DIAGRAM
|
||||
in his/her task.
|
||||
|
||||
#### Usability > Subjective satisfactionD-DIAGRAM
|
||||
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
@@ -464,10 +467,12 @@ input should be validated and any malicious input should
|
||||
be rejected.
|
||||
|
||||
#### Reliability > Consistency under load
|
||||
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
D-DIAGRAM
|
||||
|
||||
#### Reliability > Consistency under concurrency
|
||||
|
||||
Systems that allow concurrent access by multiple users, or that use
|
||||
|
Reference in New Issue
Block a user