Skip to content

Commit

Permalink
rename begin and end to beginIntegerRange and endIntegerRange
Browse files Browse the repository at this point in the history
Fixes #567

Signed-off-by: Gary O'Neall <gary@sourceauditor.com>
  • Loading branch information
goneall committed Feb 4, 2024
1 parent 7f90e1d commit 1b2cda1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions model/Core/Classes/PositiveIntegerRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A tuple of two positive integers that define a range.
## Description

PositiveIntegerRange is a tuple of two positive integers that define a range.
"begin" must be less than or equal to "end".
"beginIntegerRange" must be less than or equal to "endIntegerRange".

## Metadata

Expand All @@ -19,11 +19,11 @@ PositiveIntegerRange is a tuple of two positive integers that define a range.

## Properties

- begin
- beginIntegerRange
- type: xsd:positiveInteger
- minCount: 1
- maxCount: 1
- end
- endIntegerRange
- type: xsd:positiveInteger
- minCount: 1
- maxCount: 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
SPDX-License-Identifier: Community-Spec-1.0

# begin
# beginIntegerRange

## Summary

Defines the beginning of a range.

## Description

begin is a positive integer that defines the beginning of a range.
beginIntegerRange is a positive integer that defines the beginning of a range.

## Metadata

- name: begin
- name: beginIntegerRange
- Nature: DataProperty
- Range: xsd:positiveInteger

Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
SPDX-License-Identifier: Community-Spec-1.0

# end
# endIntegerRange

## Summary

Defines the end of a range.

## Description

end is a positive integer that defines the end of a range.
endIntegerRange is a positive integer that defines the end of a range.

## Metadata

- name: end
- name: endIntegerRange
- Nature: DataProperty
- Range: xsd:positiveInteger

0 comments on commit 1b2cda1

Please sign in to comment.