Merge pull request #453 from dkorpel/patch-2

core.d: Fix wrong `return` annotation on UserProvidedBuffer.slice
This commit is contained in:
Adam D. Ruppe 2024-09-03 07:36:59 -04:00 committed by GitHub
commit 2e8d9cdeb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

2
core.d
View File

@ -3598,7 +3598,7 @@ struct UserProvidedBuffer(T) {
}
}
package(arsd) T[] slice() return {
package(arsd) T[] slice() {
return buffer[0 .. actualLength];
}
}