s/sharable/shareable

Fixed: tint:660
Change-Id: I5b98597acb771f6b07a16a85d85d8ae5249e495d
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/45283
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
Ben Clayton
2021-03-18 21:03:24 +00:00
committed by Commit Bot service account
parent 722b5a2d18
commit 25eef8d2cf
10 changed files with 190 additions and 189 deletions

View File

@@ -34,9 +34,9 @@ enum class StorageClass {
kFunction
};
/// @returns true if the StorageClass is host-sharable
/// @returns true if the StorageClass is host-shareable
/// @see https://gpuweb.github.io/gpuweb/wgsl.html#host-shareable
inline bool IsHostSharable(StorageClass sc) {
inline bool IsHostShareable(StorageClass sc) {
return sc == ast::StorageClass::kUniform || sc == ast::StorageClass::kStorage;
}