Skip to content

Commit fc9c7f8

Browse files
authored
Remove some remaining references to single type in doc (#27799)
Remove some remaining references to `single` type in doc. `single` has been deprecated in 1.32 and removed in 2.2. [Contributed by @Guillaume-Helbecque. Reviewed and merged by @jabraham17]
2 parents 1260b04 + adc1a45 commit fc9c7f8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

frontend/include/chpl/types/Type.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ class Type {
314314
always considered to be POD, and no further evaluation takes
315315
place.
316316
317-
If 't' is the sync type, the single type, an atomic type, the
318-
array type, or the domain type, then 't' is not POD.
317+
If 't' is the sync type, an atomic type, the array type, or
318+
the domain type, then 't' is not POD.
319319
320320
If 't' is a class with 'owned' or 'shared' management, then 't'
321321
is not POD.

modules/standard/Types.chpl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,8 +616,6 @@ proc isArray(e) param do return isArrayValue(e);
616616
proc isDmap(e) param do return isDmapValue(e);
617617
/* Returns ``true`` if the argument is a ``sync`` type or a ``sync`` variable. */
618618
proc isSync(e) param do return isSyncValue(e);
619-
/* Returns ``true`` if the argument is a ``single`` type or a ``single`` variable. */
620-
proc isSingle(e) param do return isSingleValue(e);
621619
/*Returns ``true`` if the argument is an ``atomic`` type or an ``atomic`` variable.*/
622620
proc isAtomic(e) param do return isAtomicValue(e);
623621

0 commit comments

Comments
 (0)